mmc: rtsx_pci: Enable MMC_CAP_ERASE to allow erase/discard/trim requests
[linux/fpc-iii.git] / drivers / iio / accel / st_accel.h
blob57f83a67948cc0758d8210e64b4a7a8f4513e9c7
1 /*
2 * STMicroelectronics accelerometers driver
4 * Copyright 2012-2013 STMicroelectronics Inc.
6 * Denis Ciocca <denis.ciocca@st.com>
7 * v. 1.0.0
8 * Licensed under the GPL-2.
9 */
11 #ifndef ST_ACCEL_H
12 #define ST_ACCEL_H
14 #include <linux/types.h>
15 #include <linux/iio/common/st_sensors.h>
17 #define H3LIS331DL_DRIVER_NAME "h3lis331dl_accel"
18 #define LIS3LV02DL_ACCEL_DEV_NAME "lis3lv02dl_accel"
19 #define LSM303DLHC_ACCEL_DEV_NAME "lsm303dlhc_accel"
20 #define LIS3DH_ACCEL_DEV_NAME "lis3dh"
21 #define LSM330D_ACCEL_DEV_NAME "lsm330d_accel"
22 #define LSM330DL_ACCEL_DEV_NAME "lsm330dl_accel"
23 #define LSM330DLC_ACCEL_DEV_NAME "lsm330dlc_accel"
24 #define LIS331DL_ACCEL_DEV_NAME "lis331dl_accel"
25 #define LIS331DLH_ACCEL_DEV_NAME "lis331dlh"
26 #define LSM303DL_ACCEL_DEV_NAME "lsm303dl_accel"
27 #define LSM303DLH_ACCEL_DEV_NAME "lsm303dlh_accel"
28 #define LSM303DLM_ACCEL_DEV_NAME "lsm303dlm_accel"
29 #define LSM330_ACCEL_DEV_NAME "lsm330_accel"
30 #define LSM303AGR_ACCEL_DEV_NAME "lsm303agr_accel"
31 #define LIS2DH12_ACCEL_DEV_NAME "lis2dh12_accel"
33 /**
34 * struct st_sensors_platform_data - default accel platform data
35 * @drdy_int_pin: default accel DRDY is available on INT1 pin.
37 static const struct st_sensors_platform_data default_accel_pdata = {
38 .drdy_int_pin = 1,
41 int st_accel_common_probe(struct iio_dev *indio_dev);
42 void st_accel_common_remove(struct iio_dev *indio_dev);
44 #ifdef CONFIG_IIO_BUFFER
45 int st_accel_allocate_ring(struct iio_dev *indio_dev);
46 void st_accel_deallocate_ring(struct iio_dev *indio_dev);
47 int st_accel_trig_set_state(struct iio_trigger *trig, bool state);
48 #define ST_ACCEL_TRIGGER_SET_STATE (&st_accel_trig_set_state)
49 #else /* CONFIG_IIO_BUFFER */
50 static inline int st_accel_allocate_ring(struct iio_dev *indio_dev)
52 return 0;
54 static inline void st_accel_deallocate_ring(struct iio_dev *indio_dev)
57 #define ST_ACCEL_TRIGGER_SET_STATE NULL
58 #endif /* CONFIG_IIO_BUFFER */
60 #endif /* ST_ACCEL_H */