From: Felipe Balbi <felipe.balbi@xxxxxxxxx> Signed-off-by: Felipe Balbi <felipe.balbi@xxxxxxxxx> --- drivers/video/omap/lcd_p2.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/video/omap/lcd_p2.c b/drivers/video/omap/lcd_p2.c index 8c66bf6..08aed16 100644 --- a/drivers/video/omap/lcd_p2.c +++ b/drivers/video/omap/lcd_p2.c @@ -171,14 +171,14 @@ static int p2_panel_enable(struct lcd_panel *panel) omap_set_gpio_dataout(19, 1); /* bits 31:28 -> 0 LCD_PXL_15 .. 12 */ - value = omap_readl(OMAP730_IO_CONF_3) & 0x0FFFFFFF; - omap_writel(value, OMAP730_IO_CONF_3); + value = __raw_readl(OMAP730_IO_CONF_3) & 0x0FFFFFFF; + __raw_writel(value, OMAP730_IO_CONF_3); /* bits 19:0 -> 0 LCD_VSYNC, AC, PXL_0, PCLK, HSYNC, ** PXL_9..1, PXL_10, PXL_11 */ - value = omap_readl(OMAP730_IO_CONF_4) & 0xFFF00000; - omap_writel(value, OMAP730_IO_CONF_4); + value = __raw_readl(OMAP730_IO_CONF_4) & 0xFFF00000; + __raw_writel(value, OMAP730_IO_CONF_4); omap_uwire_configure_mode(0,16); -- 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