ARM: decompress: remove unused ARCH_HAS_DECOMP_WDOG
authorShawn Guo <shawn.guo@linaro.org>
Wed, 12 Dec 2012 12:51:38 +0000 (20:51 +0800)
committerShawn Guo <shawn.guo@linaro.org>
Fri, 11 Jan 2013 02:53:55 +0000 (10:53 +0800)
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>
arch/arm/boot/compressed/decompress.c

index 9deb56a..24b0475 100644 (file)
@@ -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);}