mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
rt2x00: fix led naming
Fixed led device naming for the rt2x00 driver. Due to the documentation of the led subsystem/class the naming should be "devicename:colour:function" while not applying sections should be left blank. This should lead to e.g. "%s::radio" instead of "%s:radio". Signed-off-by: Danny Kukawka <dkukawka@suse.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
b157b5e60b
commit
b34196d7d0
1 changed files with 3 additions and 3 deletions
|
@ -134,7 +134,7 @@ void rt2x00leds_register(struct rt2x00_dev *rt2x00dev)
|
|||
rt2x00dev->ops->name, wiphy_name(rt2x00dev->hw->wiphy));
|
||||
|
||||
if (rt2x00dev->led_radio.flags & LED_INITIALIZED) {
|
||||
snprintf(name, sizeof(name), "%s:radio", dev_name);
|
||||
snprintf(name, sizeof(name), "%s::radio", dev_name);
|
||||
|
||||
retval = rt2x00leds_register_led(rt2x00dev,
|
||||
&rt2x00dev->led_radio,
|
||||
|
@ -144,7 +144,7 @@ void rt2x00leds_register(struct rt2x00_dev *rt2x00dev)
|
|||
}
|
||||
|
||||
if (rt2x00dev->led_assoc.flags & LED_INITIALIZED) {
|
||||
snprintf(name, sizeof(name), "%s:assoc", dev_name);
|
||||
snprintf(name, sizeof(name), "%s::assoc", dev_name);
|
||||
|
||||
retval = rt2x00leds_register_led(rt2x00dev,
|
||||
&rt2x00dev->led_assoc,
|
||||
|
@ -154,7 +154,7 @@ void rt2x00leds_register(struct rt2x00_dev *rt2x00dev)
|
|||
}
|
||||
|
||||
if (rt2x00dev->led_qual.flags & LED_INITIALIZED) {
|
||||
snprintf(name, sizeof(name), "%s:quality", dev_name);
|
||||
snprintf(name, sizeof(name), "%s::quality", dev_name);
|
||||
|
||||
retval = rt2x00leds_register_led(rt2x00dev,
|
||||
&rt2x00dev->led_qual,
|
||||
|
|
Loading…
Reference in a new issue