st_pressure.h (41be702a542a0d14bb0b1c16e824fa9ed27616ec) st_pressure.h (931878405b869093c90d57a0a34f0c2b3641c4ea)
1/*
2 * STMicroelectronics pressures driver
3 *
4 * Copyright 2013 STMicroelectronics Inc.
5 *
6 * Denis Ciocca <denis.ciocca@st.com>
7 * v. 1.0.0
8 * Licensed under the GPL-2.
9 */
10
11#ifndef ST_PRESS_H
12#define ST_PRESS_H
13
14#include <linux/types.h>
15#include <linux/iio/common/st_sensors.h>
16
17#define LPS001WP_PRESS_DEV_NAME "lps001wp"
1/*
2 * STMicroelectronics pressures driver
3 *
4 * Copyright 2013 STMicroelectronics Inc.
5 *
6 * Denis Ciocca <denis.ciocca@st.com>
7 * v. 1.0.0
8 * Licensed under the GPL-2.
9 */
10
11#ifndef ST_PRESS_H
12#define ST_PRESS_H
13
14#include <linux/types.h>
15#include <linux/iio/common/st_sensors.h>
16
17#define LPS001WP_PRESS_DEV_NAME "lps001wp"
18#define LPS25H_PRESS_DEV_NAME "lps25h"
18#define LPS331AP_PRESS_DEV_NAME "lps331ap"
19
20/**
21 * struct st_sensors_platform_data - default press platform data
22 * @drdy_int_pin: default press DRDY is available on INT1 pin.
23 */
24static const struct st_sensors_platform_data default_press_pdata = {
25 .drdy_int_pin = 1,

--- 24 unchanged lines hidden ---
19#define LPS331AP_PRESS_DEV_NAME "lps331ap"
20
21/**
22 * struct st_sensors_platform_data - default press platform data
23 * @drdy_int_pin: default press DRDY is available on INT1 pin.
24 */
25static const struct st_sensors_platform_data default_press_pdata = {
26 .drdy_int_pin = 1,

--- 24 unchanged lines hidden ---