leds.h 957 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * LED Core
  3. *
  4. * Copyright 2005 Openedhand Ltd.
  5. *
  6. * Author: Richard Purdie <rpurdie@openedhand.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. */
  13. #ifndef __LEDS_H_INCLUDED
  14. #define __LEDS_H_INCLUDED
  15. #include <linux/rwsem.h>
  16. #include <linux/leds.h>
  17. static inline int led_get_brightness(struct led_classdev *led_cdev)
  18. {
  19. return led_cdev->brightness;
  20. }
  21. void led_init_core(struct led_classdev *led_cdev);
  22. void led_stop_software_blink(struct led_classdev *led_cdev);
  23. void led_set_brightness_nopm(struct led_classdev *led_cdev,
  24. enum led_brightness value);
  25. void led_set_brightness_nosleep(struct led_classdev *led_cdev,
  26. enum led_brightness value);
  27. extern struct rw_semaphore leds_list_lock;
  28. extern struct list_head leds_list;
  29. extern struct list_head trigger_list;
  30. #endif /* __LEDS_H_INCLUDED */