Archived
1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
archive/package/kernel/broadcom-wl/patches/010-remove_irqf_samble_random.patch
Hauke Mehrtens d254a87c0c broadcom-wl: assign first increased mac address to internal wifi core
When the original mac addresses are not valid assign the first one to 
the internal wifi core, this matches the manufacture mac address in 
most cases. In addition refresh the patches.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>


SVN-Revision: 41545
2014-07-07 17:38:54 +00:00

12 lines
384 B
Diff

--- a/driver/wl_linux.c
+++ b/driver/wl_linux.c
@@ -695,7 +695,7 @@ wl_attach(uint16 vendor, uint16 device,
if (wl->bustype != JTAG_BUS)
#endif /* BCMJTAG */
{
- if (request_irq(irq, wl_isr, IRQF_SHARED|IRQF_SAMPLE_RANDOM, dev->name, wl)) {
+ if (request_irq(irq, wl_isr, IRQF_SHARED, dev->name, wl)) {
WL_ERROR(("wl%d: request_irq() failed\n", unit));
goto fail;
}