/arch/arm/mach-kirkwood/include/mach/leds-ns2.h

https://github.com/AICP/kernel_google_msm · C Header · 26 lines · 13 code · 4 blank · 9 comment · 0 complexity · 1ba93192f0eab938bd98490410736736 MD5 · raw file

  1. /*
  2. * arch/arm/mach-kirkwood/include/mach/leds-ns2.h
  3. *
  4. * Platform data structure for Network Space v2 LED driver
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #ifndef __MACH_LEDS_NS2_H
  11. #define __MACH_LEDS_NS2_H
  12. struct ns2_led {
  13. const char *name;
  14. const char *default_trigger;
  15. unsigned cmd;
  16. unsigned slow;
  17. };
  18. struct ns2_led_platform_data {
  19. int num_leds;
  20. struct ns2_led *leds;
  21. };
  22. #endif /* __MACH_LEDS_NS2_H */