diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2023-01-09 07:02:41 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2023-01-11 21:36:52 +0100 |
commit | beb9797ee8b0c19598ffccdfae24afa6e0066f6a (patch) | |
tree | 56feff410204d65dabc92cb372fa0737b52040a3 /arch/alpha | |
parent | alpha/boot/tools/objstrip: fix the check for ELF header (diff) | |
download | linux-beb9797ee8b0c19598ffccdfae24afa6e0066f6a.tar.xz linux-beb9797ee8b0c19598ffccdfae24afa6e0066f6a.zip |
alpha/boot/misc: trim unused declarations
gzip_mark() and gzip_release() are gone; there used to be two
forward declarations of each and the patch removing those suckers
had left one of each behind...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/boot/misc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/alpha/boot/misc.c b/arch/alpha/boot/misc.c index 325d4dd4f904..1ab91852d9f7 100644 --- a/arch/alpha/boot/misc.c +++ b/arch/alpha/boot/misc.c @@ -89,8 +89,6 @@ static ulg output_ptr; static ulg bytes_out; static void error(char *m); -static void gzip_mark(void **); -static void gzip_release(void **); extern int end; static ulg free_mem_ptr; |