diff options
author | Shawn Guo | 2012-12-12 13:51:38 +0100 |
---|---|---|
committer | Shawn Guo | 2013-01-11 03:53:55 +0100 |
commit | 07b16021619a9f7e4fb87881205c15c107c066d9 (patch) | |
tree | aa55876a96f3d304f52c91d905455cba539ae761 /arch | |
parent | Linux 3.8-rc1 (diff) | |
download | kernel-qcow2-linux-07b16021619a9f7e4fb87881205c15c107c066d9.tar.gz kernel-qcow2-linux-07b16021619a9f7e4fb87881205c15c107c066d9.tar.xz kernel-qcow2-linux-07b16021619a9f7e4fb87881205c15c107c066d9.zip |
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')
-rw-r--r-- | arch/arm/boot/compressed/decompress.c | 2 |
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 *); #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);} |