]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - include/linux/leds.h
[NET]: Make NAPI polling independent of struct net_device objects.
[mirror_ubuntu-artful-kernel.git] / include / linux / leds.h
index 494bed7c2fc12f5133504daa7b4a2cc0e3b4b326..dc1178f6184b1480da56a11eeba46bc0f2cc2b14 100644 (file)
@@ -13,9 +13,9 @@
 #define __LINUX_LEDS_H_INCLUDED
 
 #include <linux/list.h>
+#include <linux/spinlock.h>
 
 struct device;
-struct class_device;
 /*
  * LED Core
  */
@@ -37,7 +37,7 @@ struct led_classdev {
        void            (*brightness_set)(struct led_classdev *led_cdev,
                                          enum led_brightness brightness);
 
-       struct class_device     *class_dev;
+       struct device           *dev;
        struct list_head         node;                  /* LED Device list */
        char                    *default_trigger;       /* Trigger to use */
 
@@ -109,4 +109,18 @@ extern void ledtrig_ide_activity(void);
 #define ledtrig_ide_activity() do {} while(0)
 #endif
 
+/* For the leds-gpio driver */
+struct gpio_led {
+       const char *name;
+       char *default_trigger;
+       unsigned        gpio;
+       u8              active_low;
+};
+
+struct gpio_led_platform_data {
+       int             num_leds;
+       struct gpio_led *leds;
+};
+
+
 #endif         /* __LINUX_LEDS_H_INCLUDED */