diff options
author | mokopatches <mokopatches@openmoko.org> | 2008-11-19 17:03:16 +0000 |
---|---|---|
committer | warmcat <andy@warmcat.com> | 2008-11-19 17:03:16 +0000 |
commit | c8a8421359011e536c4152ddae84ea04316f436f (patch) | |
tree | 9f93018841167facc01188f242348ef488074efc /include/linux/lis302dl.h | |
parent | 5915ea88b0b6ada7fc5234239feec5d4960887df (diff) |
lis302dl.patch
This is a Linux driver for the STmicro LIS302DL 3-axis accelerometer.
Signed-off-by: Harald Welte <laforge@openmoko.org>
Diffstat (limited to 'include/linux/lis302dl.h')
-rw-r--r-- | include/linux/lis302dl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/lis302dl.h b/include/linux/lis302dl.h new file mode 100644 index 00000000000..d0f31be9ee8 --- /dev/null +++ b/include/linux/lis302dl.h @@ -0,0 +1,11 @@ +#ifndef _LINUX_LIS302DL_H +#define _LINUX_LIS302DL_H + +#include <linux/types.h> + +struct lis302dl_platform_data { + char *name; +}; + +#endif /* _LINUX_LIS302DL_H */ + |