mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
leds: core: Unexport led_colors[] array
There are no external users left, make the array static. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Link: https://lore.kernel.org/r/20240613-cros_ec-led-v3-3-500b50f41e0f@weissschuh.net Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
parent
9cb6de2d2c
commit
493179e692
2 changed files with 1 additions and 3 deletions
|
@ -25,7 +25,7 @@ EXPORT_SYMBOL_GPL(leds_list_lock);
|
||||||
LIST_HEAD(leds_list);
|
LIST_HEAD(leds_list);
|
||||||
EXPORT_SYMBOL_GPL(leds_list);
|
EXPORT_SYMBOL_GPL(leds_list);
|
||||||
|
|
||||||
const char * const led_colors[LED_COLOR_ID_MAX] = {
|
static const char * const led_colors[LED_COLOR_ID_MAX] = {
|
||||||
[LED_COLOR_ID_WHITE] = "white",
|
[LED_COLOR_ID_WHITE] = "white",
|
||||||
[LED_COLOR_ID_RED] = "red",
|
[LED_COLOR_ID_RED] = "red",
|
||||||
[LED_COLOR_ID_GREEN] = "green",
|
[LED_COLOR_ID_GREEN] = "green",
|
||||||
|
@ -42,7 +42,6 @@ const char * const led_colors[LED_COLOR_ID_MAX] = {
|
||||||
[LED_COLOR_ID_CYAN] = "cyan",
|
[LED_COLOR_ID_CYAN] = "cyan",
|
||||||
[LED_COLOR_ID_LIME] = "lime",
|
[LED_COLOR_ID_LIME] = "lime",
|
||||||
};
|
};
|
||||||
EXPORT_SYMBOL_GPL(led_colors);
|
|
||||||
|
|
||||||
static int __led_set_brightness(struct led_classdev *led_cdev, unsigned int value)
|
static int __led_set_brightness(struct led_classdev *led_cdev, unsigned int value)
|
||||||
{
|
{
|
||||||
|
|
|
@ -30,6 +30,5 @@ ssize_t led_trigger_write(struct file *filp, struct kobject *kobj,
|
||||||
|
|
||||||
extern struct rw_semaphore leds_list_lock;
|
extern struct rw_semaphore leds_list_lock;
|
||||||
extern struct list_head leds_list;
|
extern struct list_head leds_list;
|
||||||
extern const char * const led_colors[LED_COLOR_ID_MAX];
|
|
||||||
|
|
||||||
#endif /* __LEDS_H_INCLUDED */
|
#endif /* __LEDS_H_INCLUDED */
|
||||||
|
|
Loading…
Reference in a new issue