iio: adc: ti-adc081c: Partial revert of removal of ACPI IDs
commit c9791a94384af07592d29504004d2255dbaf8663 upstream.
Unfortuanately a non standards compliant ACPI ID is known to be
in the wild on some AAEON boards.
Partly revert the removal of these IDs so that ADC081C will again
work + add a comment to that affect for future reference.
Whilst here use generic firmware properties rather than the ACPI
specific handling previously found in this driver.
Reported-by: Kunyang Fan <Kunyang_Fan@aaeon.com.tw>
Fixes: c458b7ca3f
("iio:adc:ti-adc081c: Drop ACPI ids that seem very unlikely to be official.")
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Andy Shevchenko <andy.shevchenko@gmail.com>
Tested-by: Kunyang Fan <Kunyang_Fan@aaeon.com.tw> #UP-extremei11
Link: https://lore.kernel.org/r/20211205172728.2826512-1-jic23@kernel.org
Cc: <Stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
256302cb2f
commit
e4a2c924a1
@@ -19,6 +19,7 @@
|
|||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/mod_devicetable.h>
|
#include <linux/mod_devicetable.h>
|
||||||
|
#include <linux/property.h>
|
||||||
|
|
||||||
#include <linux/iio/iio.h>
|
#include <linux/iio/iio.h>
|
||||||
#include <linux/iio/buffer.h>
|
#include <linux/iio/buffer.h>
|
||||||
@@ -151,13 +152,16 @@ static int adc081c_probe(struct i2c_client *client,
|
|||||||
{
|
{
|
||||||
struct iio_dev *iio;
|
struct iio_dev *iio;
|
||||||
struct adc081c *adc;
|
struct adc081c *adc;
|
||||||
struct adcxx1c_model *model;
|
const struct adcxx1c_model *model;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_WORD_DATA))
|
if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_WORD_DATA))
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
model = &adcxx1c_models[id->driver_data];
|
if (dev_fwnode(&client->dev))
|
||||||
|
model = device_get_match_data(&client->dev);
|
||||||
|
else
|
||||||
|
model = &adcxx1c_models[id->driver_data];
|
||||||
|
|
||||||
iio = devm_iio_device_alloc(&client->dev, sizeof(*adc));
|
iio = devm_iio_device_alloc(&client->dev, sizeof(*adc));
|
||||||
if (!iio)
|
if (!iio)
|
||||||
@@ -224,10 +228,17 @@ static const struct i2c_device_id adc081c_id[] = {
|
|||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(i2c, adc081c_id);
|
MODULE_DEVICE_TABLE(i2c, adc081c_id);
|
||||||
|
|
||||||
|
static const struct acpi_device_id adc081c_acpi_match[] = {
|
||||||
|
/* Used on some AAEON boards */
|
||||||
|
{ "ADC081C", (kernel_ulong_t)&adcxx1c_models[ADC081C] },
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(acpi, adc081c_acpi_match);
|
||||||
|
|
||||||
static const struct of_device_id adc081c_of_match[] = {
|
static const struct of_device_id adc081c_of_match[] = {
|
||||||
{ .compatible = "ti,adc081c" },
|
{ .compatible = "ti,adc081c", .data = &adcxx1c_models[ADC081C] },
|
||||||
{ .compatible = "ti,adc101c" },
|
{ .compatible = "ti,adc101c", .data = &adcxx1c_models[ADC101C] },
|
||||||
{ .compatible = "ti,adc121c" },
|
{ .compatible = "ti,adc121c", .data = &adcxx1c_models[ADC121C] },
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, adc081c_of_match);
|
MODULE_DEVICE_TABLE(of, adc081c_of_match);
|
||||||
@@ -236,6 +247,7 @@ static struct i2c_driver adc081c_driver = {
|
|||||||
.driver = {
|
.driver = {
|
||||||
.name = "adc081c",
|
.name = "adc081c",
|
||||||
.of_match_table = adc081c_of_match,
|
.of_match_table = adc081c_of_match,
|
||||||
|
.acpi_match_table = adc081c_acpi_match,
|
||||||
},
|
},
|
||||||
.probe = adc081c_probe,
|
.probe = adc081c_probe,
|
||||||
.remove = adc081c_remove,
|
.remove = adc081c_remove,
|
||||||
|
Reference in New Issue
Block a user