]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/leds_pwm.h
Merge branch 'omap-pool'
[linux-2.6-omap-h63xx.git] / include / linux / leds_pwm.h
diff --git a/include/linux/leds_pwm.h b/include/linux/leds_pwm.h
new file mode 100644 (file)
index 0000000..33a0711
--- /dev/null
@@ -0,0 +1,21 @@
+/*
+ * PWM LED driver data - see drivers/leds/leds-pwm.c
+ */
+#ifndef __LINUX_LEDS_PWM_H
+#define __LINUX_LEDS_PWM_H
+
+struct led_pwm {
+       const char      *name;
+       const char      *default_trigger;
+       unsigned        pwm_id;
+       u8              active_low;
+       unsigned        max_brightness;
+       unsigned        pwm_period_ns;
+};
+
+struct led_pwm_platform_data {
+       int                     num_leds;
+       struct led_pwm  *leds;
+};
+
+#endif