summaryrefslogtreecommitdiff
path: root/drivers/iio/accel/bmc150-accel-spi.c
diff options
context:
space:
mode:
authorStephan Gerhold <stephan@gerhold.net>2021-06-11 10:08:58 +0200
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2021-06-13 17:00:17 +0100
commit88e63ce6ca2834c0581273db55fb9ad2576bbbcc (patch)
tree1724c8404cf656f32c9039ba74ed6d324ed2b22c /drivers/iio/accel/bmc150-accel-spi.c
parent54b61203e203f7d300cb9355c234fbecf8015c69 (diff)
iio: accel: bmc150: Sort all chip names alphabetically / by chip ID
Right now all the device IDs are listed in seemingly random order, make this consistent by ordering those alphabetically. Also, order bmc150_accel_chip_info_tbl by chip ID for the same reason. Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Stephan Gerhold <stephan@gerhold.net> Link: https://lore.kernel.org/r/20210611080903.14384-6-stephan@gerhold.net Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/accel/bmc150-accel-spi.c')
-rw-r--r--drivers/iio/accel/bmc150-accel-spi.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/iio/accel/bmc150-accel-spi.c b/drivers/iio/accel/bmc150-accel-spi.c
index 01b42fa6a015..dc884fa18ad0 100644
--- a/drivers/iio/accel/bmc150-accel-spi.c
+++ b/drivers/iio/accel/bmc150-accel-spi.c
@@ -34,26 +34,26 @@ static int bmc150_accel_remove(struct spi_device *spi)
}
static const struct acpi_device_id bmc150_accel_acpi_match[] = {
- {"BSBA0150"},
- {"BMC150A"},
- {"BMI055A"},
{"BMA0255"},
- {"BMA250E"},
+ {"BMA0280"},
{"BMA222"},
{"BMA222E"},
- {"BMA0280"},
+ {"BMA250E"},
+ {"BMC150A"},
+ {"BMI055A"},
+ {"BSBA0150"},
{ },
};
MODULE_DEVICE_TABLE(acpi, bmc150_accel_acpi_match);
static const struct spi_device_id bmc150_accel_id[] = {
- {"bmc150_accel"},
- {"bmi055_accel"},
- {"bma255"},
- {"bma250e"},
{"bma222"},
{"bma222e"},
+ {"bma250e"},
+ {"bma255"},
{"bma280"},
+ {"bmc150_accel"},
+ {"bmi055_accel"},
{}
};
MODULE_DEVICE_TABLE(spi, bmc150_accel_id);