~ubuntu-branches/ubuntu/jaunty/linux-backports-modules-2.6.28/jaunty-proposed

« back to all changes in this revision

Viewing changes to updates/compat-wireless-2.6/drivers/net/wireless/b43legacy/leds.c

  • Committer: Bazaar Package Importer
  • Author(s): Tim Gardner, Tim Gardner
  • Date: 2009-02-09 17:48:22 UTC
  • Revision ID: james.westby@ubuntu.com-20090209174822-6chmiumgtavrmzgv
Tags: 2.6.28-7.5
[Tim Gardner]

* Update to master-2009-02-09
* Convert 'git-log' to 'git log'

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
        case B43legacy_LED_TRANSFER:
147
147
        case B43legacy_LED_APTRANSFER:
148
148
                snprintf(name, sizeof(name),
149
 
                         "b43legacy-%s:tx", wiphy_name(hw->wiphy));
 
149
                         "b43legacy-%s::tx", wiphy_name(hw->wiphy));
150
150
                b43legacy_register_led(dev, &dev->led_tx, name,
151
151
                                 ieee80211_get_tx_led_name(hw),
152
152
                                 led_index, activelow);
153
153
                snprintf(name, sizeof(name),
154
 
                         "b43legacy-%s:rx", wiphy_name(hw->wiphy));
 
154
                         "b43legacy-%s::rx", wiphy_name(hw->wiphy));
155
155
                b43legacy_register_led(dev, &dev->led_rx, name,
156
156
                                 ieee80211_get_rx_led_name(hw),
157
157
                                 led_index, activelow);
161
161
        case B43legacy_LED_RADIO_B:
162
162
        case B43legacy_LED_MODE_BG:
163
163
                snprintf(name, sizeof(name),
164
 
                         "b43legacy-%s:radio", wiphy_name(hw->wiphy));
 
164
                         "b43legacy-%s::radio", wiphy_name(hw->wiphy));
165
165
                b43legacy_register_led(dev, &dev->led_radio, name,
166
166
                                 b43legacy_rfkill_led_name(dev),
167
167
                                 led_index, activelow);
172
172
        case B43legacy_LED_WEIRD:
173
173
        case B43legacy_LED_ASSOC:
174
174
                snprintf(name, sizeof(name),
175
 
                         "b43legacy-%s:assoc", wiphy_name(hw->wiphy));
 
175
                         "b43legacy-%s::assoc", wiphy_name(hw->wiphy));
176
176
                b43legacy_register_led(dev, &dev->led_assoc, name,
177
177
                                 ieee80211_get_assoc_led_name(hw),
178
178
                                 led_index, activelow);