diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-10-30 18:17:11 +0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-10-30 18:16:46 +0400 |
commit | c4736d968254d71eba6814b2234a4e63f40aca15 (patch) | |
tree | 8cac3862aa0071046ffb993c465cca664bd922a7 /arch/s390/kernel/kprobes.c | |
parent | 399c1d8dbfdcf46977fd2e2a833b02e18a284810 (diff) | |
download | linux-c4736d968254d71eba6814b2234a4e63f40aca15.tar.xz |
[S390] sparse: fix sparse static warnings
Make functions and data static to avoid sparse warnings.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/kprobes.c')
-rw-r--r-- | arch/s390/kernel/kprobes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/kprobes.c b/arch/s390/kernel/kprobes.c index 1d05d669107c..64b761aef004 100644 --- a/arch/s390/kernel/kprobes.c +++ b/arch/s390/kernel/kprobes.c @@ -635,7 +635,7 @@ void __kprobes jprobe_return(void) asm volatile(".word 0x0002"); } -void __kprobes jprobe_return_end(void) +static void __used __kprobes jprobe_return_end(void) { asm volatile("bcr 0,0"); } |