Signed-off-by: Álvaro Fernández Rojas <noltari@xxxxxxxxx> --- drivers/leds/leds-bcm6358.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/leds/leds-bcm6358.c b/drivers/leds/leds-bcm6358.c index ab09ea4..ae32f94 100644 --- a/drivers/leds/leds-bcm6358.c +++ b/drivers/leds/leds-bcm6358.c @@ -49,12 +49,12 @@ struct bcm6358_led { static void bcm6358_led_write(void __iomem *reg, unsigned long data) { - iowrite32be(data, reg); + __raw_writel(data, reg); } static unsigned long bcm6358_led_read(void __iomem *reg) { - return ioread32be(reg); + return __raw_readl(reg); } static unsigned long bcm6358_led_busy(void __iomem *mem) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-leds" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html