mirror of https://github.com/hak5/openwrt.git
parent
0fd984fc4f
commit
ca49e09c9a
|
@ -363,6 +363,7 @@ static inline void ar724x_pci_wr(unsigned reg, u32 val)
|
|||
|
||||
base = ioremap_nocache(AR724X_PCI_CTRL_BASE, AR724X_PCI_CTRL_SIZE);
|
||||
__raw_writel(val, base + reg);
|
||||
(void) __raw_readl(base + reg);
|
||||
iounmap(base);
|
||||
}
|
||||
|
||||
|
@ -371,6 +372,7 @@ static inline void ar724x_pci_wr_nf(unsigned reg, u32 val)
|
|||
void __iomem *base;
|
||||
|
||||
base = ioremap_nocache(AR724X_PCI_CTRL_BASE, AR724X_PCI_CTRL_SIZE);
|
||||
__raw_writel(val, base + reg);
|
||||
iounmap(base);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue