diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2023-01-11 20:44:25 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2023-02-24 23:14:22 -0500 |
commit | a7acb188e874be1b2752461a445af935e0a47da7 (patch) | |
tree | 991ced7fe9715784ab833cc62d2f6dbbea8b4d9e | |
parent | a4c082f26718f7b2af6d62f5fd8b9759941c71c5 (diff) |
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>
Signed-off-by: Matt Turner <mattst88@gmail.com>
-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; |