Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Danny Kukawka and committed by
John W. Linville
b34196d7 b157b5e6

+3 -3
+3 -3
drivers/net/wireless/rt2x00/rt2x00leds.c
··· 134 134 rt2x00dev->ops->name, wiphy_name(rt2x00dev->hw->wiphy)); 135 135 136 136 if (rt2x00dev->led_radio.flags & LED_INITIALIZED) { 137 - snprintf(name, sizeof(name), "%s:radio", dev_name); 137 + snprintf(name, sizeof(name), "%s::radio", dev_name); 138 138 139 139 retval = rt2x00leds_register_led(rt2x00dev, 140 140 &rt2x00dev->led_radio, ··· 144 144 } 145 145 146 146 if (rt2x00dev->led_assoc.flags & LED_INITIALIZED) { 147 - snprintf(name, sizeof(name), "%s:assoc", dev_name); 147 + snprintf(name, sizeof(name), "%s::assoc", dev_name); 148 148 149 149 retval = rt2x00leds_register_led(rt2x00dev, 150 150 &rt2x00dev->led_assoc, ··· 154 154 } 155 155 156 156 if (rt2x00dev->led_qual.flags & LED_INITIALIZED) { 157 - snprintf(name, sizeof(name), "%s:quality", dev_name); 157 + snprintf(name, sizeof(name), "%s::quality", dev_name); 158 158 159 159 retval = rt2x00leds_register_led(rt2x00dev, 160 160 &rt2x00dev->led_qual,