aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/compressed
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2012-12-12 07:51:38 -0500
committerShawn Guo <shawn.guo@linaro.org>2013-01-10 21:53:55 -0500
commit07b16021619a9f7e4fb87881205c15c107c066d9 (patch)
treeaa55876a96f3d304f52c91d905455cba539ae761 /arch/arm/boot/compressed
parenta49f0d1ea3ec94fc7cf33a7c36a16343b74bd565 (diff)
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>
Diffstat (limited to 'arch/arm/boot/compressed')
-rw-r--r--arch/arm/boot/compressed/decompress.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/boot/compressed/decompress.c b/arch/arm/boot/compressed/decompress.c
index 9deb56a702ce..24b0475cb8bf 100644
--- a/arch/arm/boot/compressed/decompress.c
+++ b/arch/arm/boot/compressed/decompress.c
@@ -13,8 +13,6 @@ extern void error(char *);
13#define STATIC static 13#define STATIC static
14#define STATIC_RW_DATA /* non-static please */ 14#define STATIC_RW_DATA /* non-static please */
15 15
16#define ARCH_HAS_DECOMP_WDOG
17
18/* Diagnostic functions */ 16/* Diagnostic functions */
19#ifdef DEBUG 17#ifdef DEBUG
20# define Assert(cond,msg) {if(!(cond)) error(msg);} 18# define Assert(cond,msg) {if(!(cond)) error(msg);}