As only the minority of the machines uses arch_decomp_setup,
ifdef it out when not needed, to avoid needless defines in
all uncompress.h files.
Machines using this feature should add
in their uncompress.h headers.
Signed-off-by: Zoltan Devai <redacted>
---
arch/arm/boot/compressed/misc.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/arch/arm/boot/compressed/misc.c b/arch/arm/boot/compressed/misc.c
index 8e2a8fc..a4b8df2 100644
--- a/arch/arm/boot/compressed/misc.c
+++ b/arch/arm/boot/compressed/misc.c
@@ -142,7 +142,9 @@ decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
free_mem_end_ptr = free_mem_ptr_end_p;
__machine_arch_type = arch_id;
+#ifdef ARCH_HAVE_DECOMP_SETUP
arch_decomp_setup();
+#endif /* ARCH_HAVE_DECOMP_SETUP */
putstr("Uncompressing Linux...");
ret = do_decompress(input_data, input_data_end - input_data,--
1.7.4.1