From: Gabor Juhos Date: Thu, 1 Oct 2009 19:40:51 +0000 (+0000) Subject: ar71xx: fix a typo in the ar724x PCI code X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=2e09669095067d1543c0deb56096a0eeb0f17b06;p=openwrt%2Fstaging%2Fynezz.git ar71xx: fix a typo in the ar724x PCI code SVN-Revision: 17806 --- 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 0f9bd2f226..02f3a8cc4c 100644 --- 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;