Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07b16021 authored by Shawn Guo's avatar Shawn Guo
Browse files

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: default avatarShawn Guo <shawn.guo@linaro.org>
Acked-by: default avatarNicolas Pitre <nico@linaro.org>
parent a49f0d1e
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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);}