MIPS: RB532: Fix set_latch_u5()
authorPhil Sutter <n0-1@freewrt.org>
Mon, 19 Jan 2009 22:42:51 +0000 (23:42 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 30 Jan 2009 21:33:00 +0000 (21:33 +0000)
The data to be written is just a byte, so use writeb instead of writel.
Also, dev3.base contains the address, not the data so referencing here
is wrong.

Signed-off-by: Phil Sutter <n0-1@freewrt.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/rb532/gpio.c

index 2f2cb8d..be977a4 100644 (file)
@@ -93,7 +93,7 @@ void set_latch_u5(unsigned char or_mask, unsigned char nand_mask)
        spin_lock_irqsave(&dev3.lock, flags);
 
        dev3.state = (dev3.state | or_mask) & ~nand_mask;
-       writel(dev3.state, &dev3.base);
+       writeb(dev3.state, dev3.base);
 
        spin_unlock_irqrestore(&dev3.lock, flags);
 }