From: Felipe Balbi <[EMAIL PROTECTED]>

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

diff --git a/drivers/video/omap/sossi.c b/drivers/video/omap/sossi.c
index cc697cc..8f1cf66 100644
--- a/drivers/video/omap/sossi.c
+++ b/drivers/video/omap/sossi.c
@@ -604,16 +604,16 @@ static int sossi_init(struct omapfb_device *fbdev)
        sossi.fck = fck;
 
        /* Reset and enable the SoSSI module */
-       l = omap_readl(MOD_CONF_CTRL_1);
+       l = __raw_readl(MOD_CONF_CTRL_1);
        l |= CONF_SOSSI_RESET_R;
-       omap_writel(l, MOD_CONF_CTRL_1);
+       __raw_writel(l, MOD_CONF_CTRL_1);
        l &= ~CONF_SOSSI_RESET_R;
-       omap_writel(l, MOD_CONF_CTRL_1);
+       __raw_writel(l, MOD_CONF_CTRL_1);
 
        clk_enable(sossi.fck);
-       l = omap_readl(ARM_IDLECT2);
+       l = __raw_readl(ARM_IDLECT2);
        l &= ~(1 << 8);                 /* DMACK_REQ */
-       omap_writel(l, ARM_IDLECT2);
+       __raw_writel(l, ARM_IDLECT2);
 
        l = sossi_read_reg(SOSSI_INIT2_REG);
        /* Enable and reset the SoSSI block */
-- 
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