summaryrefslogtreecommitdiff
path: root/include/linux/l3g4200d.h
diff options
context:
space:
mode:
authorPhilippe Langlais <philippe.langlais@linaro.org>2012-03-19 09:24:11 +0100
committerPhilippe Langlais <philippe.langlais@linaro.org>2012-03-19 09:24:11 +0100
commit8aa9a74e33a8f0315c3be7ecddcba611f7113751 (patch)
treedf32053dcfa3fe02dc29d6dff13500da5933c665 /include/linux/l3g4200d.h
parent31637a8452dab235c486a24f0d59f64d05a3d8c7 (diff)
parent9d177065635dc31de0904f0a9affb25fa282b27a (diff)
Merge topic branch 'st-mems-sensors' into integration-linux-ux500-3.3
Diffstat (limited to 'include/linux/l3g4200d.h')
-rw-r--r--include/linux/l3g4200d.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/linux/l3g4200d.h b/include/linux/l3g4200d.h
new file mode 100644
index 00000000000..28459601e4f
--- /dev/null
+++ b/include/linux/l3g4200d.h
@@ -0,0 +1,27 @@
+/*
+ * ST L3G4200D 3-Axis Gyroscope header file
+ *
+ * Copyright (C) ST-Ericsson SA 2011
+ * Author: Chethan Krishna N <chethan.krishna@stericsson.com> for ST-Ericsson
+ * Licence terms: GNU General Public Licence (GPL) version 2
+ */
+
+#ifndef __L3G4200D_H__
+#define __L3G4200D_H__
+
+#ifdef __KERNEL__
+struct l3g4200d_gyr_platform_data {
+ const char *name_gyr;
+
+ u8 axis_map_x;
+ u8 axis_map_y;
+ u8 axis_map_z;
+
+ u8 negative_x;
+ u8 negative_y;
+ u8 negative_z;
+};
+
+#endif /* __KERNEL__ */
+
+#endif /* __L3G4200D_H__ */