PCI: Drop msi_lower_address_reg() and msi_upper_address_reg() macros
[linux-2.6.git] / drivers / iio / magnetometer / st_magn.h
blob7e81d00ef0c3d4129a4fe90fbffd9d50549ac7b5
1 /*
2 * STMicroelectronics magnetometers 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_MAGN_H
12 #define ST_MAGN_H
14 #include <linux/types.h>
15 #include <linux/iio/common/st_sensors.h>
17 #define LSM303DLHC_MAGN_DEV_NAME "lsm303dlhc_magn"
18 #define LSM303DLM_MAGN_DEV_NAME "lsm303dlm_magn"
19 #define LIS3MDL_MAGN_DEV_NAME "lis3mdl"
21 int st_magn_common_probe(struct iio_dev *indio_dev);
22 void st_magn_common_remove(struct iio_dev *indio_dev);
24 #ifdef CONFIG_IIO_BUFFER
25 int st_magn_allocate_ring(struct iio_dev *indio_dev);
26 void st_magn_deallocate_ring(struct iio_dev *indio_dev);
27 #else /* CONFIG_IIO_BUFFER */
28 static inline int st_magn_probe_trigger(struct iio_dev *indio_dev, int irq)
30 return 0;
32 static inline void st_magn_remove_trigger(struct iio_dev *indio_dev, int irq)
34 return;
36 static inline int st_magn_allocate_ring(struct iio_dev *indio_dev)
38 return 0;
40 static inline void st_magn_deallocate_ring(struct iio_dev *indio_dev)
43 #endif /* CONFIG_IIO_BUFFER */
45 #endif /* ST_MAGN_H */