From aeeea0918c9abbf92a7286974a60bec9bfc2bede Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sun, 14 Jun 2026 10:16:44 +0200 Subject: [PATCH] bluetooth/ath3kfw: Whitelist "Dell Wireless 1802 Bluetooth 4.0 LE" "Qualcomm Atheros Communications Dell Wireless 1802 Bluetooth 4.0 LE" (0cf3:e006) is a wifi-bluetooth combo. The bluetooth chip is confirmed to be AR3012 compatible. That's what the Linux ath3k driver loads as well. It has been tested with the firmware files from the https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git repository as the comms/ath3k-firmware port appears to be discontinued. Signed-off-by: Robin Haberkorn --- usr.sbin/bluetooth/ath3kfw/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.sbin/bluetooth/ath3kfw/main.c b/usr.sbin/bluetooth/ath3kfw/main.c index c04ce2baafd1b1..e8957f7f6ecedf 100644 --- a/usr.sbin/bluetooth/ath3kfw/main.c +++ b/usr.sbin/bluetooth/ath3kfw/main.c @@ -83,6 +83,7 @@ static struct ath3k_devid ath3k_list[] = { { .vendor_id = 0x0CF3, .product_id = 0x817a, .is_3012 = 1 }, { .vendor_id = 0x0cf3, .product_id = 0xe004, .is_3012 = 1 }, { .vendor_id = 0x0cf3, .product_id = 0xe005, .is_3012 = 1 }, + { .vendor_id = 0x0cf3, .product_id = 0xe006, .is_3012 = 1 }, { .vendor_id = 0x0cf3, .product_id = 0xe003, .is_3012 = 1 }, { .vendor_id = 0x13d3, .product_id = 0x3362, .is_3012 = 1 }, { .vendor_id = 0x13d3, .product_id = 0x3375, .is_3012 = 1 },