summaryrefslogtreecommitdiff
path: root/include/linux/platform_data/lv5207lp.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>2013-07-04 21:13:25 +0200
committerSimon Horman <horms+renesas@verge.net.au>2013-07-16 13:01:10 +0900
commit82e5c40d88f928afffe7bd4027719d3184433908 (patch)
treeb2bc3910006badb3bdb1291f305dc97a4d7ed53a /include/linux/platform_data/lv5207lp.h
parent8b770e3c9824c98eafe67950ad6e41e09ec9c98a (diff)
backlight: Add Sanyo LV5207LP backlight driver
The LV5207LP is a multi-purpose 7 LEDs driver for the mobile market. Only the main LED is supported by this driver. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Acked-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'include/linux/platform_data/lv5207lp.h')
-rw-r--r--include/linux/platform_data/lv5207lp.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/linux/platform_data/lv5207lp.h b/include/linux/platform_data/lv5207lp.h
new file mode 100644
index 000000000000..7dc4d9a219a6
--- /dev/null
+++ b/include/linux/platform_data/lv5207lp.h
@@ -0,0 +1,19 @@
+/*
+ * lv5207lp.h - Sanyo LV5207LP LEDs Driver
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+#ifndef __LV5207LP_H__
+#define __LV5207LP_H__
+
+struct device;
+
+struct lv5207lp_platform_data {
+ struct device *fbdev;
+ unsigned int max_value;
+ unsigned int def_value;
+};
+
+#endif