projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
ar71xx: fix a typo in the ar724x PCI code
[openwrt.git]
/
target
/
linux
/
ar71xx
/
files
/
arch
/
mips
/
pci
/
pci-ar724x.c
diff --git
a/target/linux/ar71xx/files/arch/mips/pci/pci-ar724x.c
b/target/linux/ar71xx/files/arch/mips/pci/pci-ar724x.c
index
0f9bd2f
..
02f3a8c
100644
(file)
--- a/
target/linux/ar71xx/files/arch/mips/pci/pci-ar724x.c
+++ b/
target/linux/ar71xx/files/arch/mips/pci/pci-ar724x.c
@@
-75,7
+75,7
@@
static void ar724x_pci_write(void __iomem *base, int where, int size, u32 value)
data |= ((value & 0xFF) << s);
break;
case 2:
- s = ((where & 2) <<
4
);
+ s = ((where & 2) <<
3
);
data &= ~(0xFFFF << s);
data |= ((value & 0xFFFF) << s);
break;
This page took
0.022782 seconds
and
4
git commands to generate.