diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-01-11 16:46:30 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 22:05:02 -0500 |
commit | 77a75333a3d16b830ccf47cf51d944655b015363 (patch) | |
tree | 7c911f2763b640a14bfcefd5c3832ccdd93f69e5 /arch/x86_64 | |
parent | cf0501328674849f8becf6de16620067a0c2f1b5 (diff) |
[PATCH] x86_64: sparse warning cleanups
Fix some trivial sparse warnings in x86_64 code.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/kernel/traps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/traps.c b/arch/x86_64/kernel/traps.c index 08325b1f871d..fcee07db3b68 100644 --- a/arch/x86_64/kernel/traps.c +++ b/arch/x86_64/kernel/traps.c | |||
@@ -345,7 +345,7 @@ void handle_BUG(struct pt_regs *regs) | |||
345 | 345 | ||
346 | if (user_mode(regs)) | 346 | if (user_mode(regs)) |
347 | return; | 347 | return; |
348 | if (__copy_from_user(&f, (struct bug_frame *) regs->rip, | 348 | if (__copy_from_user(&f, (const void __user *) regs->rip, |
349 | sizeof(struct bug_frame))) | 349 | sizeof(struct bug_frame))) |
350 | return; | 350 | return; |
351 | if (f.filename >= 0 || | 351 | if (f.filename >= 0 || |