diff options
author | Tomasz Duszynski <tduszyns@gmail.com> | 2018-08-16 20:49:15 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2018-08-19 17:15:43 +0100 |
commit | a18c66c405c740291ea263412f2e8b6c66fa5966 (patch) | |
tree | 432b724a792f2d523889f055eae9a21fe730b843 /drivers/iio | |
parent | 79fd571b7a4915cee0de64314ea08d8a2ffe8e78 (diff) | |
download | linux-a18c66c405c740291ea263412f2e8b6c66fa5966.tar.gz linux-a18c66c405c740291ea263412f2e8b6c66fa5966.tar.bz2 linux-a18c66c405c740291ea263412f2e8b6c66fa5966.zip |
iio: pressure: ms5611: remove deprecated compatible strings
Compatible strings tend to follow manufacturer,model format.
In case one wants to do a matching with manufacturer stripped
off he can still do so since SPI/I2C core will try id_table
based matching anyway.
Signed-off-by: Tomasz Duszynski <tduszyns@gmail.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/pressure/ms5611_i2c.c | 2 | ||||
-rw-r--r-- | drivers/iio/pressure/ms5611_spi.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/drivers/iio/pressure/ms5611_i2c.c b/drivers/iio/pressure/ms5611_i2c.c index 55fb5fc0b6ea..0469c8ae1134 100644 --- a/drivers/iio/pressure/ms5611_i2c.c +++ b/drivers/iio/pressure/ms5611_i2c.c @@ -117,9 +117,7 @@ static int ms5611_i2c_remove(struct i2c_client *client) #if defined(CONFIG_OF) static const struct of_device_id ms5611_i2c_matches[] = { { .compatible = "meas,ms5611" }, - { .compatible = "ms5611" }, { .compatible = "meas,ms5607" }, - { .compatible = "ms5607" }, { } }; MODULE_DEVICE_TABLE(of, ms5611_i2c_matches); diff --git a/drivers/iio/pressure/ms5611_spi.c b/drivers/iio/pressure/ms5611_spi.c index 932e05001e1a..cd11d022208e 100644 --- a/drivers/iio/pressure/ms5611_spi.c +++ b/drivers/iio/pressure/ms5611_spi.c @@ -119,9 +119,7 @@ static int ms5611_spi_remove(struct spi_device *spi) #if defined(CONFIG_OF) static const struct of_device_id ms5611_spi_matches[] = { { .compatible = "meas,ms5611" }, - { .compatible = "ms5611" }, { .compatible = "meas,ms5607" }, - { .compatible = "ms5607" }, { } }; MODULE_DEVICE_TABLE(of, ms5611_spi_matches); |