From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Andy Shevchenko To: Jonathan Cameron , Hartmut Knaack , Lars-Peter Clausen , Peter Meerwald-Stadler , linux-iio@vger.kernel.org Cc: Andy Shevchenko Subject: [PATCH v1] iio: proximity: sx9500: Fix typo in ACPI ID Date: Wed, 1 Nov 2017 18:30:01 +0200 Message-Id: <20171101163001.12388-1-andriy.shevchenko@linux.intel.com> List-ID: It seems no one before even tried this device on Intel based platforms. I suddenly realized that there is a typo by a) looking into prototype hardware, and b) googling for both variants (current and proposed). Thus, fix a typo in the driver to enable this sensor. Fixes: 4193c0f1d863 ("iio: driver for Semtech SX9500 proximity solution") Signed-off-by: Andy Shevchenko --- drivers/iio/proximity/sx9500.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/proximity/sx9500.c b/drivers/iio/proximity/sx9500.c index 53c5d653e780..8f417ccacf22 100644 --- a/drivers/iio/proximity/sx9500.c +++ b/drivers/iio/proximity/sx9500.c @@ -1021,7 +1021,7 @@ static const struct dev_pm_ops sx9500_pm_ops = { }; static const struct acpi_device_id sx9500_acpi_match[] = { - {"SSX9500", 0}, + {"SASX9500", 0}, { }, }; MODULE_DEVICE_TABLE(acpi, sx9500_acpi_match); -- 2.14.2