88f3771
From bf3e9581e10a19b2ce77a45fe001116d269b4c7f Mon Sep 17 00:00:00 2001
88f3771
From: Hans de Goede <hdegoede@redhat.com>
88f3771
Date: Sun, 18 Jun 2017 12:47:38 +0200
88f3771
Subject: [PATCH 13/16] iio: accel: bmc150: Add support for BOSC0200 ACPI
88f3771
 device id
88f3771
88f3771
Add support for the BOSC0200 ACPI device id used on some x86 tablets.
88f3771
note driver_data is not set to a specific model, driver_data is not
88f3771
used anyways (instead detection is done on the chip_id reg) and the
88f3771
2 tablets with a BOSC0200 ACPI device id I've have 2 different chips,
88f3771
one has a BMA250E, the other a BMA222E.
88f3771
88f3771
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
88f3771
---
88f3771
 drivers/iio/accel/bmc150-accel-i2c.c | 1 +
88f3771
 1 file changed, 1 insertion(+)
88f3771
88f3771
diff --git a/drivers/iio/accel/bmc150-accel-i2c.c b/drivers/iio/accel/bmc150-accel-i2c.c
88f3771
index 8ca8041267ef..f85014fbaa12 100644
88f3771
--- a/drivers/iio/accel/bmc150-accel-i2c.c
88f3771
+++ b/drivers/iio/accel/bmc150-accel-i2c.c
88f3771
@@ -64,6 +64,7 @@ static const struct acpi_device_id bmc150_accel_acpi_match[] = {
88f3771
 	{"BMA250E",	bma250e},
88f3771
 	{"BMA222E",	bma222e},
88f3771
 	{"BMA0280",	bma280},
88f3771
+	{"BOSC0200"},
88f3771
 	{ },
88f3771
 };
88f3771
 MODULE_DEVICE_TABLE(acpi, bmc150_accel_acpi_match);
88f3771
-- 
88f3771
2.13.0
88f3771