Commit 55ed7d4d1469eafbe3ad7e8fcd44f5af27845a81
Committed by
Gustavo Padovan
1 parent
6c0c331e4c
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
Bluetooth: Add support for Atheros [04ca:3005]
Add another vendor specific ID for Atheros AR3012 device. This chip is wrapped by Lite-On Technology Corp. output of usb-devices: T: Bus=04 Lev=01 Prnt=01 Port=03 Cnt=01 Dev#= 2 Spd=12 MxCh= 0 D: Ver= 1.10 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs= 1 P: Vendor=04ca ProdID=3005 Rev=00.02 S: Manufacturer=Atheros Communications S: Product=Bluetooth USB Host Controller S: SerialNumber=Alaska Day 2006 C: #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA I: If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb I: If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb Signed-off-by: AceLan Kao <acelan.kao@canonical.com> Signed-off-by: Gustavo Padovan <gustavo@padovan.org>
Showing 2 changed files with 3 additions and 0 deletions Side-by-side Diff
drivers/bluetooth/ath3k.c
... | ... | @@ -74,6 +74,7 @@ |
74 | 74 | { USB_DEVICE(0x0CF3, 0x3004) }, |
75 | 75 | { USB_DEVICE(0x0CF3, 0x311D) }, |
76 | 76 | { USB_DEVICE(0x13d3, 0x3375) }, |
77 | + { USB_DEVICE(0x04CA, 0x3005) }, | |
77 | 78 | |
78 | 79 | /* Atheros AR5BBU12 with sflash firmware */ |
79 | 80 | { USB_DEVICE(0x0489, 0xE02C) }, |
... | ... | @@ -92,6 +93,7 @@ |
92 | 93 | { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 }, |
93 | 94 | { USB_DEVICE(0x0cf3, 0x311D), .driver_info = BTUSB_ATH3012 }, |
94 | 95 | { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 }, |
96 | + { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 }, | |
95 | 97 | |
96 | 98 | { } /* Terminating entry */ |
97 | 99 | }; |
drivers/bluetooth/btusb.c
... | ... | @@ -132,6 +132,7 @@ |
132 | 132 | { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 }, |
133 | 133 | { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 }, |
134 | 134 | { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 }, |
135 | + { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 }, | |
135 | 136 | |
136 | 137 | /* Atheros AR5BBU12 with sflash firmware */ |
137 | 138 | { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE }, |