b43legacy: fix led naming
authorDanny Kukawka <dkukawka@suse.de>
Sat, 31 Jan 2009 14:52:16 +0000 (15:52 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 9 Feb 2009 20:03:47 +0000 (15:03 -0500)
Fixed led device naming for the b43legacy 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. "b43legacy-%s::rx" instead of
"b43legacy-%s:rx".

Signed-off-by: Danny Kukawka <dkukawka@suse.de>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/b43legacy/leds.c

index cacb786..3ea55b1 100644 (file)
@@ -146,12 +146,12 @@ static void b43legacy_map_led(struct b43legacy_wldev *dev,
        case B43legacy_LED_TRANSFER:
        case B43legacy_LED_APTRANSFER:
                snprintf(name, sizeof(name),
-                        "b43legacy-%s:tx", wiphy_name(hw->wiphy));
+                        "b43legacy-%s::tx", wiphy_name(hw->wiphy));
                b43legacy_register_led(dev, &dev->led_tx, name,
                                 ieee80211_get_tx_led_name(hw),
                                 led_index, activelow);
                snprintf(name, sizeof(name),
-                        "b43legacy-%s:rx", wiphy_name(hw->wiphy));
+                        "b43legacy-%s::rx", wiphy_name(hw->wiphy));
                b43legacy_register_led(dev, &dev->led_rx, name,
                                 ieee80211_get_rx_led_name(hw),
                                 led_index, activelow);
@@ -161,7 +161,7 @@ static void b43legacy_map_led(struct b43legacy_wldev *dev,
        case B43legacy_LED_RADIO_B:
        case B43legacy_LED_MODE_BG:
                snprintf(name, sizeof(name),
-                        "b43legacy-%s:radio", wiphy_name(hw->wiphy));
+                        "b43legacy-%s::radio", wiphy_name(hw->wiphy));
                b43legacy_register_led(dev, &dev->led_radio, name,
                                 b43legacy_rfkill_led_name(dev),
                                 led_index, activelow);
@@ -172,7 +172,7 @@ static void b43legacy_map_led(struct b43legacy_wldev *dev,
        case B43legacy_LED_WEIRD:
        case B43legacy_LED_ASSOC:
                snprintf(name, sizeof(name),
-                        "b43legacy-%s:assoc", wiphy_name(hw->wiphy));
+                        "b43legacy-%s::assoc", wiphy_name(hw->wiphy));
                b43legacy_register_led(dev, &dev->led_assoc, name,
                                 ieee80211_get_assoc_led_name(hw),
                                 led_index, activelow);