From: Felipe Balbi <felipe.balbi@xxxxxxxxx> Signed-off-by: Felipe Balbi <felipe.balbi@xxxxxxxxx> --- arch/arm/mach-omap1/board-voiceblue.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/mach-omap1/board-voiceblue.c b/arch/arm/mach-omap1/board-voiceblue.c index 3ab5bbf..e3db8f4 100644 --- a/arch/arm/mach-omap1/board-voiceblue.c +++ b/arch/arm/mach-omap1/board-voiceblue.c @@ -192,8 +192,8 @@ static void __init voiceblue_init(void) /* There is a good chance board is going up, so enable power LED * (it is connected through invertor) */ - omap_writeb(0x00, OMAP_LPG1_LCR); - omap_writeb(0x00, OMAP_LPG1_PMR); /* Disable clock */ + __raw_writeb(0x00, OMAP_LPG1_LCR); + __raw_writeb(0x00, OMAP_LPG1_PMR); /* Disable clock */ } static void __init voiceblue_map_io(void) @@ -213,8 +213,8 @@ static int panic_event(struct notifier_block *this, unsigned long event, return NOTIFY_DONE; /* Flash power LED */ - omap_writeb(0x78, OMAP_LPG1_LCR); - omap_writeb(0x01, OMAP_LPG1_PMR); /* Enable clock */ + __raw_writeb(0x78, OMAP_LPG1_LCR); + __raw_writeb(0x01, OMAP_LPG1_PMR); /* Enable clock */ return NOTIFY_DONE; } -- 1.6.0.2.307.gc427 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html