mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-04-11 00:33:54 +00:00
This patch is meant to replace the i2c/spi transfer functions with regmap. SPI framework requires DMA safe buffers so let's add GFP_DMA flag for memory allocation used by bulk_read functions. Signed-off-by: Denis Ciocca <denis.ciocca@st.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
29 lines
628 B
C
29 lines
628 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* 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>
|
|
#include <linux/of.h>
|
|
|
|
int st_sensors_i2c_configure(struct iio_dev *indio_dev,
|
|
struct i2c_client *client);
|
|
|
|
#ifdef CONFIG_ACPI
|
|
int st_sensors_match_acpi_device(struct device *dev);
|
|
#else
|
|
static inline int st_sensors_match_acpi_device(struct device *dev)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
#endif
|
|
|
|
#endif /* ST_SENSORS_I2C_H */
|