2022-03-05 21:17:59 +05:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2021-10-27 18:46:41 +05:00
|
|
|
/*
|
|
|
|
* STMicroelectronics sensors i2c library driver
|
|
|
|
*
|
|
|
|
* Copyright 2012-2013 STMicroelectronics Inc.
|
|
|
|
*
|
|
|
|
* Denis Ciocca <denis.ciocca@st.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ST_SENSORS_I2C_H
|
|
|
|
#define ST_SENSORS_I2C_H
|
|
|
|
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/iio/common/st_sensors.h>
|
|
|
|
|
2022-03-05 21:17:59 +05:00
|
|
|
int st_sensors_i2c_configure(struct iio_dev *indio_dev,
|
|
|
|
struct i2c_client *client);
|
2021-10-27 18:46:41 +05:00
|
|
|
|
|
|
|
#endif /* ST_SENSORS_I2C_H */
|