drm/panel: simple: add Multi-Inno Technology MI0700A2T-30
[drm/drm-misc.git] / drivers / iio / imu / st_lsm9ds0 / st_lsm9ds0.h
blobe67d31b48441855e7dec46d7cf8612d4fda9e68a
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 // STMicroelectronics LSM9DS0 IMU driver
4 #ifndef ST_LSM9DS0_H
5 #define ST_LSM9DS0_H
7 struct device;
8 struct regmap;
9 struct regulator;
11 struct iio_dev;
13 struct st_lsm9ds0 {
14 struct device *dev;
15 const char *name;
16 int irq;
17 struct iio_dev *accel;
18 struct iio_dev *magn;
19 struct regulator *vdd;
20 struct regulator *vdd_io;
23 int st_lsm9ds0_probe(struct st_lsm9ds0 *lsm9ds0, struct regmap *regmap);
25 #endif /* ST_LSM9DS0_H */