mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
b73fb8b536
* Try that punk NASA -_-
24 lines
487 B
C
24 lines
487 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
// STMicroelectronics LSM9DS0 IMU driver
|
|
|
|
#ifndef ST_LSM9DS0_H
|
|
#define ST_LSM9DS0_H
|
|
|
|
struct iio_dev;
|
|
struct regulator;
|
|
|
|
struct st_lsm9ds0 {
|
|
struct device *dev;
|
|
const char *name;
|
|
int irq;
|
|
struct iio_dev *accel;
|
|
struct iio_dev *magn;
|
|
struct regulator *vdd;
|
|
struct regulator *vdd_io;
|
|
};
|
|
|
|
int st_lsm9ds0_probe(struct st_lsm9ds0 *lsm9ds0, struct regmap *regmap);
|
|
int st_lsm9ds0_remove(struct st_lsm9ds0 *lsm9ds0);
|
|
|
|
#endif /* ST_LSM9DS0_H */
|