broadcom-wl: hack to work around a bug in the PCIe controller
Thank you nlh This closes #12930. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35767 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
a759b3d550
commit
ae76f19611
|
@ -0,0 +1,12 @@
|
|||
--- a/driver/linux_osl.c
|
||||
+++ b/driver/linux_osl.c
|
||||
@@ -723,6 +723,9 @@ osl_readl(volatile uint32 *r)
|
||||
uint16
|
||||
osl_readw(volatile uint16 *r)
|
||||
{
|
||||
+ uint32 addr = (uintptr)r & 0xffff3fff;
|
||||
+ if (addr == 0xa8000688) /* ifs_ctl */
|
||||
+ readl(r);
|
||||
return (readw(r));
|
||||
}
|
||||
|
Loading…
Reference in New Issue