summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTony MÃ¥nsson <tony.mansson@linaro.org>2011-03-22 14:23:03 +0100
committerPhilippe Langlais <philippe.langlais@stericsson.com>2012-05-22 11:06:04 +0200
commitd7c90be4603f5cc4364a6bb648393f924f0a6f1f (patch)
treeb3bd8cf090a024a65ec027bd04f60d39cfabab90 /include
parent76e10d158efb6d4516018846f60c2ab5501900bc (diff)
Adding l3g4200d Gyroscope
Diffstat (limited to 'include')
-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__ */