diff options
author | Bob Copeland <me@bobcopeland.com> | 2009-03-08 00:10:22 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-03-16 18:09:37 -0400 |
commit | 22e5b08585f7282060c464a36908b19cb4809fde (patch) | |
tree | 52bb152f163ed42612c07501d379b35d598bb7d0 /drivers/net/wireless | |
parent | cdb02dc6146950155e79a4e3225e1b58cf2b0c54 (diff) |
ath5k: update LED table with reported devices
This patch adds support for Acer Ferrari 5000, and also specifies
the subsystem device ids for previously reported e-machines e510 and
Acer Aspire One A150.
Signed-off-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/ath5k/led.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath5k/led.c b/drivers/net/wireless/ath5k/led.c index e365fbd34237..0686e12738b3 100644 --- a/drivers/net/wireless/ath5k/led.c +++ b/drivers/net/wireless/ath5k/led.c | |||
@@ -60,9 +60,11 @@ static const struct pci_device_id ath5k_led_devices[] = { | |||
60 | /* HP Compaq nc6xx, nc4000, nx6000 */ | 60 | /* HP Compaq nc6xx, nc4000, nx6000 */ |
61 | { ATH_SDEVICE(PCI_VENDOR_ID_COMPAQ, PCI_ANY_ID), ATH_LED(1, 1) }, | 61 | { ATH_SDEVICE(PCI_VENDOR_ID_COMPAQ, PCI_ANY_ID), ATH_LED(1, 1) }, |
62 | /* Acer Aspire One A150 (maximlevitsky@gmail.com) */ | 62 | /* Acer Aspire One A150 (maximlevitsky@gmail.com) */ |
63 | { ATH_SDEVICE(PCI_VENDOR_ID_FOXCONN, PCI_ANY_ID), ATH_LED(3, 0) }, | 63 | { ATH_SDEVICE(PCI_VENDOR_ID_FOXCONN, 0xe008), ATH_LED(3, 0) }, |
64 | /* Acer Ferrari 5000 (russ.dill@gmail.com) */ | ||
65 | { ATH_SDEVICE(PCI_VENDOR_ID_AMBIT, 0x0422), ATH_LED(1, 1) }, | ||
64 | /* E-machines E510 (tuliom@gmail.com) */ | 66 | /* E-machines E510 (tuliom@gmail.com) */ |
65 | { ATH_SDEVICE(PCI_VENDOR_ID_AMBIT, PCI_ANY_ID), ATH_LED(3, 0) }, | 67 | { ATH_SDEVICE(PCI_VENDOR_ID_AMBIT, 0x0428), ATH_LED(3, 0) }, |
66 | { } | 68 | { } |
67 | }; | 69 | }; |
68 | 70 | ||