diff options
Diffstat (limited to 'drivers/net/wireless/hostap')
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_cs.c | 17 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_hw.c | 9 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_pci.c | 2 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_plx.c | 2 |
4 files changed, 15 insertions, 15 deletions
diff --git a/drivers/net/wireless/hostap/hostap_cs.c b/drivers/net/wireless/hostap/hostap_cs.c index c9640a3e02c9..d19748d90aaf 100644 --- a/drivers/net/wireless/hostap/hostap_cs.c +++ b/drivers/net/wireless/hostap/hostap_cs.c | |||
| @@ -794,13 +794,6 @@ static struct pcmcia_device_id hostap_cs_ids[] = { | |||
| 794 | PCMCIA_MFC_DEVICE_PROD_ID12(0, "SanDisk", "ConnectPlus", | 794 | PCMCIA_MFC_DEVICE_PROD_ID12(0, "SanDisk", "ConnectPlus", |
| 795 | 0x7a954bd9, 0x74be00c6), | 795 | 0x7a954bd9, 0x74be00c6), |
| 796 | PCMCIA_DEVICE_PROD_ID123( | 796 | PCMCIA_DEVICE_PROD_ID123( |
| 797 | "Intersil", "PRISM 2_5 PCMCIA ADAPTER", "ISL37300P", | ||
| 798 | 0x4b801a17, 0x6345a0bf, 0xc9049a39), | ||
| 799 | /* D-Link DWL-650 Rev. P1; manfid 0x000b, 0x7110 */ | ||
| 800 | PCMCIA_DEVICE_PROD_ID123( | ||
| 801 | "D-Link", "DWL-650 Wireless PC Card RevP", "ISL37101P-10", | ||
| 802 | 0x1a424a1c, 0x6ea57632, 0xdd97a26b), | ||
| 803 | PCMCIA_DEVICE_PROD_ID123( | ||
| 804 | "Addtron", "AWP-100 Wireless PCMCIA", "Version 01.02", | 797 | "Addtron", "AWP-100 Wireless PCMCIA", "Version 01.02", |
| 805 | 0xe6ec52ce, 0x08649af2, 0x4b74baa0), | 798 | 0xe6ec52ce, 0x08649af2, 0x4b74baa0), |
| 806 | PCMCIA_DEVICE_PROD_ID123( | 799 | PCMCIA_DEVICE_PROD_ID123( |
| @@ -834,14 +827,12 @@ static struct pcmcia_device_id hostap_cs_ids[] = { | |||
| 834 | "Ver. 1.00", | 827 | "Ver. 1.00", |
| 835 | 0x5cd01705, 0x4271660f, 0x9d08ee12), | 828 | 0x5cd01705, 0x4271660f, 0x9d08ee12), |
| 836 | PCMCIA_DEVICE_PROD_ID123( | 829 | PCMCIA_DEVICE_PROD_ID123( |
| 837 | "corega", "WL PCCL-11", "ISL37300P", | ||
| 838 | 0xa21501a, 0x59868926, 0xc9049a39), | ||
| 839 | PCMCIA_DEVICE_PROD_ID123( | ||
| 840 | "The Linksys Group, Inc.", "Wireless Network CF Card", "ISL37300P", | ||
| 841 | 0xa5f472c2, 0x9c05598d, 0xc9049a39), | ||
| 842 | PCMCIA_DEVICE_PROD_ID123( | ||
| 843 | "Wireless LAN" , "11Mbps PC Card", "Version 01.02", | 830 | "Wireless LAN" , "11Mbps PC Card", "Version 01.02", |
| 844 | 0x4b8870ff, 0x70e946d1, 0x4b74baa0), | 831 | 0x4b8870ff, 0x70e946d1, 0x4b74baa0), |
| 832 | PCMCIA_DEVICE_PROD_ID3("HFA3863", 0x355cb092), | ||
| 833 | PCMCIA_DEVICE_PROD_ID3("ISL37100P", 0x630d52b2), | ||
| 834 | PCMCIA_DEVICE_PROD_ID3("ISL37101P-10", 0xdd97a26b), | ||
| 835 | PCMCIA_DEVICE_PROD_ID3("ISL37300P", 0xc9049a39), | ||
| 845 | PCMCIA_DEVICE_NULL | 836 | PCMCIA_DEVICE_NULL |
| 846 | }; | 837 | }; |
| 847 | MODULE_DEVICE_TABLE(pcmcia, hostap_cs_ids); | 838 | MODULE_DEVICE_TABLE(pcmcia, hostap_cs_ids); |
diff --git a/drivers/net/wireless/hostap/hostap_hw.c b/drivers/net/wireless/hostap/hostap_hw.c index ff9b5c882184..d70732819423 100644 --- a/drivers/net/wireless/hostap/hostap_hw.c +++ b/drivers/net/wireless/hostap/hostap_hw.c | |||
| @@ -2618,6 +2618,15 @@ static irqreturn_t prism2_interrupt(int irq, void *dev_id) | |||
| 2618 | int events = 0; | 2618 | int events = 0; |
| 2619 | u16 ev; | 2619 | u16 ev; |
| 2620 | 2620 | ||
| 2621 | /* Detect early interrupt before driver is fully configued */ | ||
| 2622 | if (!dev->base_addr) { | ||
| 2623 | if (net_ratelimit()) { | ||
| 2624 | printk(KERN_DEBUG "%s: Interrupt, but dev not configured\n", | ||
| 2625 | dev->name); | ||
| 2626 | } | ||
| 2627 | return IRQ_HANDLED; | ||
| 2628 | } | ||
| 2629 | |||
| 2621 | iface = netdev_priv(dev); | 2630 | iface = netdev_priv(dev); |
| 2622 | local = iface->local; | 2631 | local = iface->local; |
| 2623 | 2632 | ||
diff --git a/drivers/net/wireless/hostap/hostap_pci.c b/drivers/net/wireless/hostap/hostap_pci.c index 8fdd41f4b4f2..4d97ae37499b 100644 --- a/drivers/net/wireless/hostap/hostap_pci.c +++ b/drivers/net/wireless/hostap/hostap_pci.c | |||
| @@ -39,7 +39,7 @@ struct hostap_pci_priv { | |||
| 39 | /* FIX: do we need mb/wmb/rmb with memory operations? */ | 39 | /* FIX: do we need mb/wmb/rmb with memory operations? */ |
| 40 | 40 | ||
| 41 | 41 | ||
| 42 | static struct pci_device_id prism2_pci_id_table[] __devinitdata = { | 42 | static DEFINE_PCI_DEVICE_TABLE(prism2_pci_id_table) = { |
| 43 | /* Intersil Prism3 ISL3872 11Mb/s WLAN Controller */ | 43 | /* Intersil Prism3 ISL3872 11Mb/s WLAN Controller */ |
| 44 | { 0x1260, 0x3872, PCI_ANY_ID, PCI_ANY_ID }, | 44 | { 0x1260, 0x3872, PCI_ANY_ID, PCI_ANY_ID }, |
| 45 | /* Intersil Prism2.5 ISL3874 11Mb/s WLAN Controller */ | 45 | /* Intersil Prism2.5 ISL3874 11Mb/s WLAN Controller */ |
diff --git a/drivers/net/wireless/hostap/hostap_plx.c b/drivers/net/wireless/hostap/hostap_plx.c index 0e5d51086a44..fc04ccdc5bef 100644 --- a/drivers/net/wireless/hostap/hostap_plx.c +++ b/drivers/net/wireless/hostap/hostap_plx.c | |||
| @@ -60,7 +60,7 @@ struct hostap_plx_priv { | |||
| 60 | 60 | ||
| 61 | #define PLXDEV(vendor,dev,str) { vendor, dev, PCI_ANY_ID, PCI_ANY_ID } | 61 | #define PLXDEV(vendor,dev,str) { vendor, dev, PCI_ANY_ID, PCI_ANY_ID } |
| 62 | 62 | ||
| 63 | static struct pci_device_id prism2_plx_id_table[] __devinitdata = { | 63 | static DEFINE_PCI_DEVICE_TABLE(prism2_plx_id_table) = { |
| 64 | PLXDEV(0x10b7, 0x7770, "3Com AirConnect PCI 777A"), | 64 | PLXDEV(0x10b7, 0x7770, "3Com AirConnect PCI 777A"), |
| 65 | PLXDEV(0x111a, 0x1023, "Siemens SpeedStream SS1023"), | 65 | PLXDEV(0x111a, 0x1023, "Siemens SpeedStream SS1023"), |
| 66 | PLXDEV(0x126c, 0x8030, "Nortel emobility"), | 66 | PLXDEV(0x126c, 0x8030, "Nortel emobility"), |
