hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/drivers/leds/leds.h
....@@ -1,14 +1,10 @@
1
+/* SPDX-License-Identifier: GPL-2.0-only */
12 /*
23 * LED Core
34 *
45 * Copyright 2005 Openedhand Ltd.
56 *
67 * 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
- *
128 */
139 #ifndef __LEDS_H_INCLUDED
1410 #define __LEDS_H_INCLUDED
....@@ -27,9 +23,16 @@
2723 enum led_brightness value);
2824 void led_set_brightness_nosleep(struct led_classdev *led_cdev,
2925 enum led_brightness value);
26
+ssize_t led_trigger_read(struct file *filp, struct kobject *kobj,
27
+ struct bin_attribute *attr, char *buf,
28
+ loff_t pos, size_t count);
29
+ssize_t led_trigger_write(struct file *filp, struct kobject *kobj,
30
+ struct bin_attribute *bin_attr, char *buf,
31
+ loff_t pos, size_t count);
3032
3133 extern struct rw_semaphore leds_list_lock;
3234 extern struct list_head leds_list;
3335 extern struct list_head trigger_list;
36
+extern const char * const led_colors[LED_COLOR_ID_MAX];
3437
3538 #endif /* __LEDS_H_INCLUDED */