diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-11 12:22:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:17:05 -0400 |
commit | 35d59fc5d6f318a28a99c5936171afd4edef28c8 (patch) | |
tree | 6a5011dbdfe7222ec694856d93e24348f41cb1f4 /arch/arm/vfp | |
parent | 5f6e3c836508926e50cebe17ad87f59666a7fb47 (diff) |
[PATCH] arm __user annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/arm/vfp')
-rw-r--r-- | arch/arm/vfp/vfpmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/vfp/vfpmodule.c b/arch/arm/vfp/vfpmodule.c index dedbb449632e..a657a28f08db 100644 --- a/arch/arm/vfp/vfpmodule.c +++ b/arch/arm/vfp/vfpmodule.c | |||
@@ -90,7 +90,7 @@ void vfp_raise_sigfpe(unsigned int sicode, struct pt_regs *regs) | |||
90 | 90 | ||
91 | info.si_signo = SIGFPE; | 91 | info.si_signo = SIGFPE; |
92 | info.si_code = sicode; | 92 | info.si_code = sicode; |
93 | info.si_addr = (void *)(instruction_pointer(regs) - 4); | 93 | info.si_addr = (void __user *)(instruction_pointer(regs) - 4); |
94 | 94 | ||
95 | /* | 95 | /* |
96 | * This is the same as NWFPE, because it's not clear what | 96 | * This is the same as NWFPE, because it's not clear what |