diff options
author | Pavel Machek <pavel@ucw.cz> | 2006-05-23 07:35:29 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-05-23 19:35:32 +0200 |
commit | 30d6b2f3749e41ce37170ebc445948222b2db4ee (patch) | |
tree | f4a1d2723ca8c8f0d3e3d310f2f99203a52e9bad /arch | |
parent | [PATCH] tty_insert_flip_string_flags() license fix (diff) | |
download | linux-30d6b2f3749e41ce37170ebc445948222b2db4ee.tar.xz linux-30d6b2f3749e41ce37170ebc445948222b2db4ee.zip |
[PATCH] swsusp: fix typo in cr0 handling
Writing cr0 to cr2 register can't be right. This fixes the typo. I wonder
how it could survive so long.
Signed-off-by: Pavel Machek <pavel@suse.cz>
Cc: Zachary Amsden <zach@vmware.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/power/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/power/cpu.c b/arch/i386/power/cpu.c index 50a0bef8c85f..79b2370c7fac 100644 --- a/arch/i386/power/cpu.c +++ b/arch/i386/power/cpu.c @@ -92,7 +92,7 @@ void __restore_processor_state(struct saved_context *ctxt) write_cr4(ctxt->cr4); write_cr3(ctxt->cr3); write_cr2(ctxt->cr2); - write_cr2(ctxt->cr0); + write_cr0(ctxt->cr0); /* * now restore the descriptor tables to their proper values |