leds.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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/device.h>
  16. #include <linux/leds.h>
  17. static inline void led_set_brightness(struct led_classdev *led_cdev,
  18. enum led_brightness value)
  19. {
  20. if (value > LED_FULL)
  21. value = LED_FULL;
  22. led_cdev->brightness = value;
  23. if (!(led_cdev->flags & LED_SUSPENDED))
  24. led_cdev->brightness_set(led_cdev, value);
  25. }
  26. extern rwlock_t leds_list_lock;
  27. extern struct list_head leds_list;
  28. #ifdef CONFIG_LEDS_TRIGGERS
  29. void led_trigger_set_default(struct led_classdev *led_cdev);
  30. void led_trigger_set(struct led_classdev *led_cdev,
  31. struct led_trigger *trigger);
  32. #else
  33. #define led_trigger_set_default(x) do {} while(0)
  34. #define led_trigger_set(x, y) do {} while(0)
  35. #endif
  36. ssize_t led_trigger_store(struct device *dev, struct device_attribute *attr,
  37. const char *buf, size_t count);
  38. ssize_t led_trigger_show(struct device *dev, struct device_attribute *attr,
  39. char *buf);
  40. #endif /* __LEDS_H_INCLUDED */