iio: chemical: bme680: Remove remaining ACPI-only stuff
The ACPI ID table was removed with the following 2 commits: Commitb73d21dccf
("iio: bme680_i2c: Remove acpi_device_id table") Commitf0e4057e97
("iio: bme680_spi: Remove acpi_device_id table") Remove the remaining ACPI related stuff to this driver since they are not directly used. Signed-off-by: Vasileios Amoiridis <vassilisamir@gmail.com> Link: https://patch.msgid.link/20240609233826.330516-5-vassilisamir@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
89ab0c3383
commit
8f53b8770e
@ -8,7 +8,6 @@
|
||||
* Datasheet:
|
||||
* https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME680-DS001-00.pdf
|
||||
*/
|
||||
#include <linux/acpi.h>
|
||||
#include <linux/bitfield.h>
|
||||
#include <linux/cleanup.h>
|
||||
#include <linux/delay.h>
|
||||
@ -927,17 +926,6 @@ static const struct iio_info bme680_info = {
|
||||
.attrs = &bme680_attribute_group,
|
||||
};
|
||||
|
||||
static const char *bme680_match_acpi_device(struct device *dev)
|
||||
{
|
||||
const struct acpi_device_id *id;
|
||||
|
||||
id = acpi_match_device(dev->driver->acpi_match_table, dev);
|
||||
if (!id)
|
||||
return NULL;
|
||||
|
||||
return dev_name(dev);
|
||||
}
|
||||
|
||||
int bme680_core_probe(struct device *dev, struct regmap *regmap,
|
||||
const char *name)
|
||||
{
|
||||
@ -969,9 +957,6 @@ int bme680_core_probe(struct device *dev, struct regmap *regmap,
|
||||
if (!indio_dev)
|
||||
return -ENOMEM;
|
||||
|
||||
if (!name && ACPI_HANDLE(dev))
|
||||
name = bme680_match_acpi_device(dev);
|
||||
|
||||
data = iio_priv(indio_dev);
|
||||
mutex_init(&data->lock);
|
||||
dev_set_drvdata(dev, indio_dev);
|
||||
|
Loading…
Reference in New Issue
Block a user