diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2011-01-12 20:01:14 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-13 11:03:23 -0500 |
commit | 93685ad247ef65b7d6f90ffe97b44f5cfeaf40d3 (patch) | |
tree | 979868b5a03a7e73c792e222646a1876b3dc0216 /lib/decompress_unlzo.c | |
parent | 6b01ed64c19b52121a717274d271d9915f8d3e94 (diff) |
Decompressors: get rid of set_error_fn() macro
set_error_fn() has become a useless complication after c1e7c3ae59
("bzip2/lzma/gzip: pre-boot malloc doesn't return NULL on failure") fixed
the use of error() in malloc(). Only decompress_unlzma.c had some use for
it and that was easy to change too.
This also gets rid of the static function pointer "error", which
should have been marked as __initdata.
Signed-off-by: Lasse Collin <lasse.collin@tukaani.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Alain Knaff <alain@knaff.lu>
Cc: Albin Tonnerre <albin.tonnerre@free-electrons.com>
Cc: Phillip Lougher <phillip@lougher.demon.co.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/decompress_unlzo.c')
-rw-r--r-- | lib/decompress_unlzo.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/decompress_unlzo.c b/lib/decompress_unlzo.c index bcb3a4bd68ff..df3e98f945a6 100644 --- a/lib/decompress_unlzo.c +++ b/lib/decompress_unlzo.c | |||
@@ -91,7 +91,7 @@ STATIC inline int INIT unlzo(u8 *input, int in_len, | |||
91 | int (*fill) (void *, unsigned int), | 91 | int (*fill) (void *, unsigned int), |
92 | int (*flush) (void *, unsigned int), | 92 | int (*flush) (void *, unsigned int), |
93 | u8 *output, int *posp, | 93 | u8 *output, int *posp, |
94 | void (*error_fn) (char *x)) | 94 | void (*error) (char *x)) |
95 | { | 95 | { |
96 | u8 skip = 0, r = 0; | 96 | u8 skip = 0, r = 0; |
97 | u32 src_len, dst_len; | 97 | u32 src_len, dst_len; |
@@ -99,8 +99,6 @@ STATIC inline int INIT unlzo(u8 *input, int in_len, | |||
99 | u8 *in_buf, *in_buf_save, *out_buf; | 99 | u8 *in_buf, *in_buf_save, *out_buf; |
100 | int ret = -1; | 100 | int ret = -1; |
101 | 101 | ||
102 | set_error_fn(error_fn); | ||
103 | |||
104 | if (output) { | 102 | if (output) { |
105 | out_buf = output; | 103 | out_buf = output; |
106 | } else if (!flush) { | 104 | } else if (!flush) { |