leds.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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/rwsem.h>
  17. #include <linux/leds.h>
  18. static inline void led_set_brightness(struct led_classdev *led_cdev,
  19. enum led_brightness value)
  20. {
  21. if (value > led_cdev->max_brightness)
  22. value = led_cdev->max_brightness;
  23. led_cdev->brightness = value;
  24. if (!(led_cdev->flags & LED_SUSPENDED))
  25. led_cdev->brightness_set(led_cdev, value);
  26. }
  27. static inline int led_get_brightness(struct led_classdev *led_cdev)
  28. {
  29. return led_cdev->brightness;
  30. }
  31. extern struct rw_semaphore leds_list_lock;
  32. extern struct list_head leds_list;
  33. #ifdef CONFIG_LEDS_TRIGGERS
  34. void led_trigger_set_default(struct led_classdev *led_cdev);
  35. void led_trigger_set(struct led_classdev *led_cdev,
  36. struct led_trigger *trigger);
  37. void led_trigger_remove(struct led_classdev *led_cdev);
  38. static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
  39. {
  40. return led_cdev->trigger_data;
  41. }
  42. #else
  43. #define led_trigger_set_default(x) do {} while (0)
  44. #define led_trigger_set(x, y) do {} while (0)
  45. #define led_trigger_remove(x) do {} while (0)
  46. #define led_get_trigger_data(x) (NULL)
  47. #endif
  48. ssize_t led_trigger_store(struct device *dev, struct device_attribute *attr,
  49. const char *buf, size_t count);
  50. ssize_t led_trigger_show(struct device *dev, struct device_attribute *attr,
  51. char *buf);
  52. #endif /* __LEDS_H_INCLUDED */