diff options
author | Tony Lindgren <tony@atomide.com> | 2010-01-14 14:36:55 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-01-18 07:44:51 -0500 |
commit | b53e9b5ebd5c6e718f54bcacd4e97b71533ca681 (patch) | |
tree | 055a09686eefa24a4bc72be7c25847c690f34c7d /arch/arm/boot | |
parent | 95b8f20fd6a2694a16b8addb190b942bfb670c88 (diff) |
ARM: 5882/1: ARM: Fix uncompress code compile for different defines of flush(void)
Because of the include of the decompress_inflate.c file from
boot/compress/misc.c, there are different flush() defines:
In file included from arch/arm/boot/compressed/misc.c:249:
arch/arm/boot/compressed/../../../../lib/decompress_inflate.c:138:29: error: macro "flush" passed 2 arguments, but takes just 0
Fix this by removing the define of flush() in misc.c for
CONFIG_DEBUG_ICEDCC as it's already defined in mach/uncompress.h,
and that is being included unconditionally.
Also use a static inline function instead of define
for mach-mxc and mach-gemini to avoid similar bug
for those platforms.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/compressed/misc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/boot/compressed/misc.c b/arch/arm/boot/compressed/misc.c index 7e0fe4d42c7b..af6479fae931 100644 --- a/arch/arm/boot/compressed/misc.c +++ b/arch/arm/boot/compressed/misc.c | |||
@@ -88,7 +88,6 @@ static void icedcc_putc(int ch) | |||
88 | #endif | 88 | #endif |
89 | 89 | ||
90 | #define putc(ch) icedcc_putc(ch) | 90 | #define putc(ch) icedcc_putc(ch) |
91 | #define flush() do { } while (0) | ||
92 | #endif | 91 | #endif |
93 | 92 | ||
94 | static void putstr(const char *ptr) | 93 | static void putstr(const char *ptr) |