aboutsummaryrefslogtreecommitdiff
path: root/include/linux/spi/tdo24m.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-01-09 13:55:13 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2009-01-09 13:55:13 -0800
commitb64dc5a4842c3420d7a093bf5e8979c57ceb789c (patch)
tree48978026f68d6153716df66d77d4eccfadf5e2ee /include/linux/spi/tdo24m.h
parent73d59314e6ed268d6f322ae1bdd723b23fa5a4ed (diff)
parentd00ba726725c6f41e43df00f83e484ba8f9fac5c (diff)
Merge branch 'for-linus' of git://git.o-hand.com/linux-rpurdie-backlight
* 'for-linus' of git://git.o-hand.com/linux-rpurdie-backlight: backlight: Rename the corgi backlight driver to generic backlight: add support for Toppoly TDO35S series to tdo24m lcd driver backlight: Add suspend/resume support to the backlight core bd->props.brightness doesn't reflect the actual backlight level. backlight: Support VGA/QVGA mode switching in tosa_lcd backlight: Catch invalid input in sysfs attributes backlight: Value of ILI9320_RGB_IF2 register should not be hardcoded backlight: crbllcd_bl - Use platform_device_register_simple() backlight: progear_bl - Use platform_device_register_simple() backlight: hp680_bl - Use platform_device_register_simple()
Diffstat (limited to 'include/linux/spi/tdo24m.h')
-rw-r--r--include/linux/spi/tdo24m.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/spi/tdo24m.h b/include/linux/spi/tdo24m.h
new file mode 100644
index 00000000000..7572d4e1fe7
--- /dev/null
+++ b/include/linux/spi/tdo24m.h
@@ -0,0 +1,13 @@
+#ifndef __TDO24M_H__
+#define __TDO24M_H__
+
+enum tdo24m_model {
+ TDO24M,
+ TDO35S,
+};
+
+struct tdo24m_platform_data {
+ enum tdo24m_model model;
+};
+
+#endif /* __TDO24M_H__ */