diff options
author | Shrirang Bagul <shrirang.bagul@canonical.com> | 2016-11-24 06:33:44 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-12-03 09:56:26 +0100 |
commit | 89a2a93f3bf1e0d3168d454fe7fa207be981cb83 (patch) | |
tree | 2c7946cd428ce26c591bcff8adcc386807493816 /drivers/iio/accel/st_accel.h | |
parent | iio: st_sensors: match sensors using ACPI handle (diff) | |
download | linux-89a2a93f3bf1e0d3168d454fe7fa207be981cb83.tar.xz linux-89a2a93f3bf1e0d3168d454fe7fa207be981cb83.zip |
iio: st_accel: Support sensor i2c probe using acpi
Add support to probe st_accel sensors on i2c bus using ACPI. Compatible
strings are not avaialable on ACPI based systems.
Signed-off-by: Shrirang Bagul <shrirang.bagul@canonical.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/accel/st_accel.h')
-rw-r--r-- | drivers/iio/accel/st_accel.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/iio/accel/st_accel.h b/drivers/iio/accel/st_accel.h index 7c231687109a..3ad44ce7ae82 100644 --- a/drivers/iio/accel/st_accel.h +++ b/drivers/iio/accel/st_accel.h @@ -14,6 +14,24 @@ #include <linux/types.h> #include <linux/iio/common/st_sensors.h> +enum st_accel_type { + LSM303DLH, + LSM303DLHC, + LIS3DH, + LSM330D, + LSM330DL, + LSM330DLC, + LIS331DLH, + LSM303DL, + LSM303DLM, + LSM330, + LSM303AGR, + LIS2DH12, + LIS3L02DQ, + LNG2DM, + ST_ACCEL_MAX, +}; + #define H3LIS331DL_DRIVER_NAME "h3lis331dl_accel" #define LIS3LV02DL_ACCEL_DEV_NAME "lis3lv02dl_accel" #define LSM303DLHC_ACCEL_DEV_NAME "lsm303dlhc_accel" |