From: TsiChung Liew Date: Wed, 22 Jul 2009 16:32:39 +0000 (+0000) Subject: ColdFire: Fix missing _IO_BASE which caused compile error X-Git-Tag: v2009.11-rc1~225^2~31^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=88c811b153771a3d1bfe958297c69722efb278e9;p=karo-tx-uboot.git ColdFire: Fix missing _IO_BASE which caused compile error The compile error was caused by a recent patch. Affected platforms - M5253DEMO.h, M5253EVBE.h, and M54455EVB.h. Adding the _IO_BASE automatically defined to 0 in asm-m68k/io.h if it isn't set in platform configuration file. Signed-off-by: TsiChung Liew --- diff --git a/include/asm-m68k/io.h b/include/asm-m68k/io.h index 50ea08751f..531f420336 100644 --- a/include/asm-m68k/io.h +++ b/include/asm-m68k/io.h @@ -28,6 +28,10 @@ #include +#ifndef _IO_BASE +#define _IO_BASE 0 +#endif + #define __raw_readb(addr) (*(volatile u8 *)(addr)) #define __raw_readw(addr) (*(volatile u16 *)(addr)) #define __raw_readl(addr) (*(volatile u32 *)(addr))