diff options
Diffstat (limited to 'include/linux/lis3lv02d.h')
-rw-r--r-- | include/linux/lis3lv02d.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/lis3lv02d.h b/include/linux/lis3lv02d.h index 3cc2f2c53e4c..f1ca0dcc1628 100644 --- a/include/linux/lis3lv02d.h +++ b/include/linux/lis3lv02d.h | |||
@@ -43,6 +43,21 @@ struct lis3lv02d_platform_data { | |||
43 | #define LIS3_WAKEUP_Z_HI (1 << 5) | 43 | #define LIS3_WAKEUP_Z_HI (1 << 5) |
44 | unsigned char wakeup_flags; | 44 | unsigned char wakeup_flags; |
45 | unsigned char wakeup_thresh; | 45 | unsigned char wakeup_thresh; |
46 | #define LIS3_NO_MAP 0 | ||
47 | #define LIS3_DEV_X 1 | ||
48 | #define LIS3_DEV_Y 2 | ||
49 | #define LIS3_DEV_Z 3 | ||
50 | #define LIS3_INV_DEV_X -1 | ||
51 | #define LIS3_INV_DEV_Y -2 | ||
52 | #define LIS3_INV_DEV_Z -3 | ||
53 | s8 axis_x; | ||
54 | s8 axis_y; | ||
55 | s8 axis_z; | ||
56 | int (*setup_resources)(void); | ||
57 | int (*release_resources)(void); | ||
58 | /* Limits for selftest are specified in chip data sheet */ | ||
59 | s16 st_min_limits[3]; /* min pass limit x, y, z */ | ||
60 | s16 st_max_limits[3]; /* max pass limit x, y, z */ | ||
46 | }; | 61 | }; |
47 | 62 | ||
48 | #endif /* __LIS3LV02D_H_ */ | 63 | #endif /* __LIS3LV02D_H_ */ |