Skip to content

Commit

Permalink
[PATCH] arm __user annotations
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Oct 11, 2006
1 parent 5f6e3c8 commit 35d59fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/vfp/vfpmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void vfp_raise_sigfpe(unsigned int sicode, struct pt_regs *regs)

info.si_signo = SIGFPE;
info.si_code = sicode;
info.si_addr = (void *)(instruction_pointer(regs) - 4);
info.si_addr = (void __user *)(instruction_pointer(regs) - 4);

/*
* This is the same as NWFPE, because it's not clear what
Expand Down

0 comments on commit 35d59fc

Please sign in to comment.