leds.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * LED Core
  4. *
  5. * Copyright 2005 Openedhand Ltd.
  6. *
  7. * Author: Richard Purdie <rpurdie@openedhand.com>
  8. */
  9. #ifndef __LEDS_H_INCLUDED
  10. #define __LEDS_H_INCLUDED
  11. #include <linux/rwsem.h>
  12. #include <linux/leds.h>
  13. static inline int led_get_brightness(struct led_classdev *led_cdev)
  14. {
  15. return led_cdev->brightness;
  16. }
  17. void led_init_core(struct led_classdev *led_cdev);
  18. void led_stop_software_blink(struct led_classdev *led_cdev);
  19. void led_set_brightness_nopm(struct led_classdev *led_cdev, unsigned int value);
  20. void led_set_brightness_nosleep(struct led_classdev *led_cdev, unsigned int value);
  21. ssize_t led_trigger_read(struct file *filp, struct kobject *kobj,
  22. struct bin_attribute *attr, char *buf,
  23. loff_t pos, size_t count);
  24. ssize_t led_trigger_write(struct file *filp, struct kobject *kobj,
  25. struct bin_attribute *bin_attr, char *buf,
  26. loff_t pos, size_t count);
  27. extern struct rw_semaphore leds_list_lock;
  28. extern struct list_head leds_list;
  29. #endif /* __LEDS_H_INCLUDED */