diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-10-30 15:17:11 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-10-30 15:16:46 +0100 |
commit | c4736d968254d71eba6814b2234a4e63f40aca15 (patch) | |
tree | 8cac3862aa0071046ffb993c465cca664bd922a7 /arch/s390/boot | |
parent | 399c1d8dbfdcf46977fd2e2a833b02e18a284810 (diff) | |
download | linux-3.10-c4736d968254d71eba6814b2234a4e63f40aca15.tar.gz linux-3.10-c4736d968254d71eba6814b2234a4e63f40aca15.tar.bz2 linux-3.10-c4736d968254d71eba6814b2234a4e63f40aca15.zip |
[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/boot')
-rw-r--r-- | arch/s390/boot/compressed/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/boot/compressed/misc.c b/arch/s390/boot/compressed/misc.c index 028f23ea81d..465eca756fe 100644 --- a/arch/s390/boot/compressed/misc.c +++ b/arch/s390/boot/compressed/misc.c @@ -61,7 +61,7 @@ static unsigned long free_mem_end_ptr; extern _sclp_print_early(const char *); -int puts(const char *s) +static int puts(const char *s) { _sclp_print_early(s); return 0; |