projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
deb1003
)
MIPS: RB532: Fix set_latch_u5()
author
Phil Sutter
<n0-1@freewrt.org>
Mon, 19 Jan 2009 22:42:51 +0000
(23:42 +0100)
committer
Ralf 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
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/rb532/gpio.c
b/arch/mips/rb532/gpio.c
index 2f2cb8dc6531a4d8ddc2d915e4c78aea4a3856ac..be977a4c2f9c416db07fe571ee658fa090d6608b 100644
(file)
--- a/
arch/mips/rb532/gpio.c
+++ b/
arch/mips/rb532/gpio.c
@@
-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;
- write
l(dev3.state, &
dev3.base);
+ write
b(dev3.state,
dev3.base);
spin_unlock_irqrestore(&dev3.lock, flags);
}