From: Felipe Balbi <[EMAIL PROTECTED]>

Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]>
---
 drivers/video/omap/lcd_osk.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/video/omap/lcd_osk.c b/drivers/video/omap/lcd_osk.c
index 379c96d..51fb476 100644
--- a/drivers/video/omap/lcd_osk.c
+++ b/drivers/video/omap/lcd_osk.c
@@ -43,10 +43,10 @@ static int osk_panel_enable(struct lcd_panel *panel)
        omap_cfg_reg(PWL);
 
        /* Enable PWL unit */
-       omap_writeb(0x01, OMAP_PWL_CLK_ENABLE);
+       __raw_writeb(0x01, OMAP_PWL_CLK_ENABLE);
 
        /* Set PWL level */
-       omap_writeb(0xFF, OMAP_PWL_ENABLE);
+       __raw_writeb(0xFF, OMAP_PWL_ENABLE);
 
        /* set GPIO2 high (lcd power enabled) */
        gpio_set_value(2, 1);
@@ -57,10 +57,10 @@ static int osk_panel_enable(struct lcd_panel *panel)
 static void osk_panel_disable(struct lcd_panel *panel)
 {
        /* Set PWL level to zero */
-       omap_writeb(0x00, OMAP_PWL_ENABLE);
+       __raw_writeb(0x00, OMAP_PWL_ENABLE);
 
        /* Disable PWL unit */
-       omap_writeb(0x00, OMAP_PWL_CLK_ENABLE);
+       __raw_writeb(0x00, OMAP_PWL_CLK_ENABLE);
 
        /* set GPIO2 low */
        gpio_set_value(2, 0);
-- 
1.6.0.2.307.gc427

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to