diff options
author | Graeme Gregory <dp@xora.org.uk> | 2007-11-16 22:37:36 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2007-11-16 22:37:36 +0000 |
commit | b02d783422320a9d71754d5e626f412adb307162 (patch) | |
tree | f33de4a3ce8a29e10769086cfcd0a1cf3fcfb30d /packages/linux/linux-rp-2.6.23/connectplus-prevent-oops-HACK.patch | |
parent | 8bf214c9b0fdaa68134bb81c39f854ed51a4de56 (diff) |
linux-rp_2.6.23.bb : add missing patch to prevent connect+ cards from
oopsis on insert.
Diffstat (limited to 'packages/linux/linux-rp-2.6.23/connectplus-prevent-oops-HACK.patch')
-rw-r--r-- | packages/linux/linux-rp-2.6.23/connectplus-prevent-oops-HACK.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/linux/linux-rp-2.6.23/connectplus-prevent-oops-HACK.patch b/packages/linux/linux-rp-2.6.23/connectplus-prevent-oops-HACK.patch new file mode 100644 index 0000000000..b5439c62e7 --- /dev/null +++ b/packages/linux/linux-rp-2.6.23/connectplus-prevent-oops-HACK.patch @@ -0,0 +1,17 @@ +Index: linux-2.6.21/drivers/net/wireless/hostap/hostap_hw.c +=================================================================== +--- linux-2.6.21.orig/drivers/net/wireless/hostap/hostap_hw.c 2007-07-07 12:45:39.000000000 +0100 ++++ linux-2.6.21/drivers/net/wireless/hostap/hostap_hw.c 2007-07-07 12:47:30.000000000 +0100 +@@ -2666,6 +2666,12 @@ + iface = netdev_priv(dev); + local = iface->local; + ++ if(dev->base_addr == 0) ++ { ++ printk(KERN_DEBUG "%s: IRQ before base_addr set\n", dev->name); ++ return IRQ_HANDLED; ++ } ++ + prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_INTERRUPT, 0, 0); + + if (local->func->card_present && !local->func->card_present(local)) { |