diff options
Diffstat (limited to 'arch/i386/power/cpu.c')
-rw-r--r-- | arch/i386/power/cpu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/i386/power/cpu.c b/arch/i386/power/cpu.c index 5a1abeff033b..2c15500f8713 100644 --- a/arch/i386/power/cpu.c +++ b/arch/i386/power/cpu.c | |||
@@ -26,8 +26,8 @@ void __save_processor_state(struct saved_context *ctxt) | |||
26 | /* | 26 | /* |
27 | * descriptor tables | 27 | * descriptor tables |
28 | */ | 28 | */ |
29 | store_gdt(&ctxt->gdt_limit); | 29 | store_gdt(&ctxt->gdt); |
30 | store_idt(&ctxt->idt_limit); | 30 | store_idt(&ctxt->idt); |
31 | store_tr(ctxt->tr); | 31 | store_tr(ctxt->tr); |
32 | 32 | ||
33 | /* | 33 | /* |
@@ -99,8 +99,8 @@ void __restore_processor_state(struct saved_context *ctxt) | |||
99 | * now restore the descriptor tables to their proper values | 99 | * now restore the descriptor tables to their proper values |
100 | * ltr is done i fix_processor_context(). | 100 | * ltr is done i fix_processor_context(). |
101 | */ | 101 | */ |
102 | load_gdt(&ctxt->gdt_limit); | 102 | load_gdt(&ctxt->gdt); |
103 | load_idt(&ctxt->idt_limit); | 103 | load_idt(&ctxt->idt); |
104 | 104 | ||
105 | /* | 105 | /* |
106 | * segment registers | 106 | * segment registers |