summaryrefslogtreecommitdiffstats
path: root/net/rfkill
diff options
context:
space:
mode:
authorHeikki Krogerus <heikki.krogerus@linux.intel.com>2014-04-01 10:02:55 -0400
committerJohannes Berg <johannes.berg@intel.com>2014-04-11 03:29:21 -0400
commit41d09df1e08bf18316d08cb73c5d08b5346c0c5d (patch)
tree71786dbe235e8c4821888773e403b870fa1b957b /net/rfkill
parent04f1b47cd76ed525c87cc7c87a687e99d7f0e93d (diff)
net: rfkill: gpio: add ACPI IDs for a Broadcom bluetooth chip
This adds ACPI IDs for Broadcom bluetooth chip BCM43241 used on various Baytrail based boards such as Lenovo Miix 2 and Asus Transformer Book T100TA. Acked-by: Alexandre Courbot <acourbot@nvidia.com> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/rfkill')
-rw-r--r--net/rfkill/rfkill-gpio.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/rfkill/rfkill-gpio.c b/net/rfkill/rfkill-gpio.c
index fec3dbf321e1..436bffb68868 100644
--- a/net/rfkill/rfkill-gpio.c
+++ b/net/rfkill/rfkill-gpio.c
@@ -171,11 +171,16 @@ static int rfkill_gpio_remove(struct platform_device *pdev)
171 return 0; 171 return 0;
172} 172}
173 173
174#ifdef CONFIG_ACPI
174static const struct acpi_device_id rfkill_acpi_match[] = { 175static const struct acpi_device_id rfkill_acpi_match[] = {
176 { "BCM2E1A", RFKILL_TYPE_BLUETOOTH },
177 { "BCM2E39", RFKILL_TYPE_BLUETOOTH },
178 { "BCM2E3D", RFKILL_TYPE_BLUETOOTH },
175 { "BCM4752", RFKILL_TYPE_GPS }, 179 { "BCM4752", RFKILL_TYPE_GPS },
176 { "LNV4752", RFKILL_TYPE_GPS }, 180 { "LNV4752", RFKILL_TYPE_GPS },
177 { }, 181 { },
178}; 182};
183#endif
179 184
180static struct platform_driver rfkill_gpio_driver = { 185static struct platform_driver rfkill_gpio_driver = {
181 .probe = rfkill_gpio_probe, 186 .probe = rfkill_gpio_probe,