From: Felipe Balbi <felipe.balbi@xxxxxxxxx> Signed-off-by: Felipe Balbi <felipe.balbi@xxxxxxxxx> --- arch/arm/plat-omap/ocpi.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/plat-omap/ocpi.c b/arch/arm/plat-omap/ocpi.c index ebe0c73..b0578d3 100644 --- a/arch/arm/plat-omap/ocpi.c +++ b/arch/arm/plat-omap/ocpi.c @@ -62,14 +62,14 @@ int ocpi_enable(void) return -ENODEV; /* Enable access for OHCI in OCPI */ - val = omap_readl(OCPI_PROT); + val = __raw_readl(OCPI_PROT); val &= ~0xff; //val &= (1 << 0); /* Allow access only to EMIFS */ - omap_writel(val, OCPI_PROT); + __raw_writel(val, OCPI_PROT); - val = omap_readl(OCPI_SEC); + val = __raw_readl(OCPI_SEC); val &= ~0xff; - omap_writel(val, OCPI_SEC); + __raw_writel(val, OCPI_SEC); return 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 majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html