X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Fasm-arm%2Farch-iop3xx%2Funcompress.h;h=82b88762c3cc049655b92180bd0c2e8ed788e078;hb=6a77f38946aaee1cd85eeec6cf4229b204c15071;hp=673fabc1f216dc26dc9e31e4865b03496d42bce2;hpb=87fc8d1bb10cd459024a742c6a10961fefcef18f;p=linux-2.6.git diff --git a/include/asm-arm/arch-iop3xx/uncompress.h b/include/asm-arm/arch-iop3xx/uncompress.h index 673fabc1f..82b88762c 100644 --- a/include/asm-arm/arch-iop3xx/uncompress.h +++ b/include/asm-arm/arch-iop3xx/uncompress.h @@ -9,8 +9,10 @@ #ifdef CONFIG_ARCH_IOP321 #define UTYPE unsigned char * -#else +#elif defined(CONFIG_ARCH_IOP331) #define UTYPE u32 * +#else +#error "Missing IOP3xx arch type def" #endif static volatile UTYPE uart_base; @@ -42,8 +44,8 @@ static __inline__ void __arch_decomp_setup(unsigned long arch_id) uart_base = (volatile UTYPE)IQ80321_UART; else if(machine_is_iq31244()) uart_base = (volatile UTYPE)IQ31244_UART; - else if(machine_is_iq80331()) - uart_base = (volatile UTYPE)IQ80331_UART0_PHYS; + else if(machine_is_iq80331() || machine_is_iq80332()) + uart_base = (volatile UTYPE)IOP331_UART0_PHYS; else uart_base = (volatile UTYPE)0xfe800000; }