diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-08-21 20:03:34 +0300 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2020-08-25 10:22:09 +0300 |
commit | e4682b8a688bc3352e663545ad51997c3d84877b (patch) | |
tree | a7e9dd023da47ca62cb94ca3db51595f6899f7fa /drivers/i2c/i2c-core-acpi.c | |
parent | e3cb82c6d6f6c27ab754e13ae29bdd6b949982e2 (diff) | |
download | linux-e4682b8a688bc3352e663545ad51997c3d84877b.tar.xz |
i2c: acpi: Remove dead code, i.e. i2c_acpi_match_device()
We have no users of i2c_acpi_match_device() anymore and seems
will not have them in the future, thus remove dead code.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c/i2c-core-acpi.c')
-rw-r--r-- | drivers/i2c/i2c-core-acpi.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/i2c/i2c-core-acpi.c b/drivers/i2c/i2c-core-acpi.c index 2ade99b105b9..e627d7b2790f 100644 --- a/drivers/i2c/i2c-core-acpi.c +++ b/drivers/i2c/i2c-core-acpi.c @@ -276,16 +276,6 @@ void i2c_acpi_register_devices(struct i2c_adapter *adap) dev_warn(&adap->dev, "failed to enumerate I2C slaves\n"); } -const struct acpi_device_id * -i2c_acpi_match_device(const struct acpi_device_id *matches, - struct i2c_client *client) -{ - if (!(client && matches)) - return NULL; - - return acpi_match_device(matches, &client->dev); -} - static const struct acpi_device_id i2c_acpi_force_400khz_device_ids[] = { /* * These Silead touchscreen controllers only work at 400KHz, for |