]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
xtensa: boot/lib: fix function prototypes
authorMax Filippov <jcmvbkbc@gmail.com>
Wed, 20 Sep 2023 11:41:09 +0000 (04:41 -0700)
committerMax Filippov <jcmvbkbc@gmail.com>
Wed, 20 Sep 2023 12:03:30 +0000 (05:03 -0700)
commitf54d02c8f2cc4b46ba2a3bd8252a6750453b6f2b
tree0d4277c76c3adbbc3c607ac93eebcfbf98d352df
parent9aecda97ec3deecbfa7670877c8ddfd3d0fc87c4
xtensa: boot/lib: fix function prototypes

Add function prototype for gunzip() to the boot library code and make
exit() and zalloc() static.

arch/xtensa/boot/lib/zmem.c:8:6: warning: no previous prototype for 'exit' [-Wmissing-prototypes]
    8 | void exit (void)
arch/xtensa/boot/lib/zmem.c:13:7: warning: no previous prototype for 'zalloc' [-Wmissing-prototypes]
   13 | void *zalloc(unsigned size)
arch/xtensa/boot/lib/zmem.c:35:6: warning: no previous prototype for 'gunzip' [-Wmissing-prototypes]
   35 | void gunzip (void *dst, int dstlen, unsigned char *src, int *lenp)

Fixes: 4bedea945451 ("xtensa: Architecture support for Tensilica Xtensa Part 2")
Fixes: e7d163f76665 ("xtensa: Removed local copy of zlib and fixed O= support")
Suggested-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/boot/lib/zmem.c