Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.11 40 lines 887 B view raw
1/* 2 * STMicroelectronics sensors i2c library driver 3 * 4 * Copyright 2012-2013 STMicroelectronics Inc. 5 * 6 * Denis Ciocca <denis.ciocca@st.com> 7 * 8 * Licensed under the GPL-2. 9 */ 10 11#ifndef ST_SENSORS_I2C_H 12#define ST_SENSORS_I2C_H 13 14#include <linux/i2c.h> 15#include <linux/iio/common/st_sensors.h> 16#include <linux/of.h> 17 18void st_sensors_i2c_configure(struct iio_dev *indio_dev, 19 struct i2c_client *client, struct st_sensor_data *sdata); 20 21#ifdef CONFIG_OF 22void st_sensors_of_i2c_probe(struct i2c_client *client, 23 const struct of_device_id *match); 24#else 25static inline void st_sensors_of_i2c_probe(struct i2c_client *client, 26 const struct of_device_id *match) 27{ 28} 29#endif 30 31#ifdef CONFIG_ACPI 32int st_sensors_match_acpi_device(struct device *dev); 33#else 34static inline int st_sensors_match_acpi_device(struct device *dev) 35{ 36 return -ENODEV; 37} 38#endif 39 40#endif /* ST_SENSORS_I2C_H */