Skip to content
Snippets Groups Projects
Commit 2b96d66c authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Jonathan Cameron
Browse files

iio: accel: st_accel_spi: add support to H3LIS331DL, LIS331DL, LIS3LV02DL

parent 6011208d
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,10 @@ static const struct of_device_id st_accel_of_match[] = { ...@@ -30,6 +30,10 @@ static const struct of_device_id st_accel_of_match[] = {
.compatible = "st,lis302dl-spi", .compatible = "st,lis302dl-spi",
.data = LIS3LV02DL_ACCEL_DEV_NAME, .data = LIS3LV02DL_ACCEL_DEV_NAME,
}, },
{
.compatible = "st,lis3lv02dl-accel",
.data = LIS3LV02DL_ACCEL_DEV_NAME,
},
{ {
.compatible = "st,lis3dh-accel", .compatible = "st,lis3dh-accel",
.data = LIS3DH_ACCEL_DEV_NAME, .data = LIS3DH_ACCEL_DEV_NAME,
...@@ -70,6 +74,14 @@ static const struct of_device_id st_accel_of_match[] = { ...@@ -70,6 +74,14 @@ static const struct of_device_id st_accel_of_match[] = {
.compatible = "st,lng2dm-accel", .compatible = "st,lng2dm-accel",
.data = LNG2DM_ACCEL_DEV_NAME, .data = LNG2DM_ACCEL_DEV_NAME,
}, },
{
.compatible = "st,h3lis331dl-accel",
.data = H3LIS331DL_DRIVER_NAME,
},
{
.compatible = "st,lis331dl-accel",
.data = LIS331DL_ACCEL_DEV_NAME,
},
{} {}
}; };
MODULE_DEVICE_TABLE(of, st_accel_of_match); MODULE_DEVICE_TABLE(of, st_accel_of_match);
...@@ -118,6 +130,9 @@ static const struct spi_device_id st_accel_id_table[] = { ...@@ -118,6 +130,9 @@ static const struct spi_device_id st_accel_id_table[] = {
{ LIS2DH12_ACCEL_DEV_NAME }, { LIS2DH12_ACCEL_DEV_NAME },
{ LIS3L02DQ_ACCEL_DEV_NAME }, { LIS3L02DQ_ACCEL_DEV_NAME },
{ LNG2DM_ACCEL_DEV_NAME }, { LNG2DM_ACCEL_DEV_NAME },
{ H3LIS331DL_DRIVER_NAME },
{ LIS331DL_ACCEL_DEV_NAME },
{ LIS3LV02DL_ACCEL_DEV_NAME },
{}, {},
}; };
MODULE_DEVICE_TABLE(spi, st_accel_id_table); MODULE_DEVICE_TABLE(spi, st_accel_id_table);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment