From: Stuart Menefy Date: Mon, 24 Aug 2009 08:13:52 +0000 (+0900) Subject: sh: Read from CCN_PVR instead of ROM for delay. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7d9c035150897c2bebedae280505513dbdef2abc;p=mv-sheeva.git sh: Read from CCN_PVR instead of ROM for delay. Reading from the ROM is not a good idea as it could disturb some flash operation that it is in progress. Signed-off-by: Stuart Menefy Signed-off-by: Paul Mundt --- diff --git a/arch/sh/include/asm/io.h b/arch/sh/include/asm/io.h index aeecf432d48..5be45ea4dfe 100644 --- a/arch/sh/include/asm/io.h +++ b/arch/sh/include/asm/io.h @@ -92,8 +92,12 @@ static inline void ctrl_delay(void) { -#ifdef P2SEG +#ifdef CONFIG_CPU_SH4 + __raw_readw(CCN_PVR); +#elif defined(P2SEG) __raw_readw(P2SEG); +#else +#error "Need a dummy address for delay" #endif }