Skip to content

Commit

Permalink
rt2x00: fix led naming
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Danny Kukawka authored and John W. Linville committed Feb 9, 2009
1 parent b157b5e commit b34196d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/wireless/rt2x00/rt2x00leds.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit b34196d

Please sign in to comment.