Browse Source

ARM: decompress: remove unused ARCH_HAS_DECOMP_WDOG

ARCH_HAS_DECOMP_WDOG is only used in lib/inflate.c which is not
included in arch/arm/boot/compressed/decompress.c now.  That said,
ARCH_HAS_DECOMP_WDOG is not used at all.  Let's remove it.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Nicolas Pitre <nico@linaro.org>
Shawn Guo 12 years ago
parent
commit
07b1602161
1 changed files with 0 additions and 2 deletions
  1. 0 2
      arch/arm/boot/compressed/decompress.c

+ 0 - 2
arch/arm/boot/compressed/decompress.c

@@ -13,8 +13,6 @@ extern void error(char *);
 #define STATIC static
 #define STATIC_RW_DATA	/* non-static please */
 
-#define ARCH_HAS_DECOMP_WDOG
-
 /* Diagnostic functions */
 #ifdef DEBUG
 #  define Assert(cond,msg) {if(!(cond)) error(msg);}