summaryrefslogtreecommitdiffstats
path: root/arch/i386/math-emu/errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/math-emu/errors.c')
-rw-r--r--arch/i386/math-emu/errors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/math-emu/errors.c b/arch/i386/math-emu/errors.c
index f76020d1f..38a72e572 100644
--- a/arch/i386/math-emu/errors.c
+++ b/arch/i386/math-emu/errors.c
@@ -42,7 +42,7 @@ void Un_impl(void)
RE_ENTRANT_CHECK_OFF;
/* No need to verify_area(), we have previously fetched these bytes. */
printk("Unimplemented FPU Opcode at eip=%p : ", (void *) address);
- if ( FPU_CS == USER_CS )
+ if ( FPU_CS == __USER_CS )
{
while ( 1 )
{
@@ -93,7 +93,7 @@ void emu_printall(void)
RE_ENTRANT_CHECK_OFF;
/* No need to verify_area(), we have previously fetched these bytes. */
printk("At %p:", (void *) address);
- if ( FPU_CS == USER_CS )
+ if ( FPU_CS == __USER_CS )
{
#define MAX_PRINTED_BYTES 20
for ( i = 0; i < MAX_PRINTED_BYTES; i++ )