aboutsummaryrefslogtreecommitdiff
path: root/core/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/cpu.c')
-rw-r--r--core/cpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/cpu.c b/core/cpu.c
index b5a3614..ffc264f 100644
--- a/core/cpu.c
+++ b/core/cpu.c
@@ -411,7 +411,7 @@ static void enable_attn(void)
unsigned long hid0;
hid0 = mfspr(SPR_HID0);
- hid0 |= hid0_hile;
+ hid0 |= hid0_attn;
set_hid0(hid0);
}
@@ -420,7 +420,7 @@ static void disable_attn(void)
unsigned long hid0;
hid0 = mfspr(SPR_HID0);
- hid0 &= ~hid0_hile;
+ hid0 &= ~hid0_attn;
set_hid0(hid0);
}