diff options
author | Shuah Khan <shuahkhan@gmail.com> | 2012-06-14 00:34:30 +0400 |
---|---|---|
committer | Bryan Wu <bryan.wu@canonical.com> | 2012-07-24 03:52:34 +0400 |
commit | 19cd67e2d51225b164560b54b85f943e07deee8a (patch) | |
tree | cadec9758a57fe2a805081e47f0439c870deb6d0 /net/mac80211 | |
parent | 0da3e65ba892b8c63d55fa5ec197b6fae55f75f8 (diff) | |
download | linux-19cd67e2d51225b164560b54b85f943e07deee8a.tar.xz |
leds: Rename led_brightness_set() to led_set_brightness()
Rename leds external interface led_brightness_set() to led_set_brightness().
This is the second phase of the change to reduce confusion between the
leds internal and external interfaces that set brightness. With this change,
now the external interface is led_set_brightness(). The first phase renamed
the internal interface led_set_brightness() to __led_set_brightness().
There are no changes to the interface implementations.
Signed-off-by: Shuah Khan <shuahkhan@gmail.com>
Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/led.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/led.c b/net/mac80211/led.c index 1bf7903496f8..bcffa6903129 100644 --- a/net/mac80211/led.c +++ b/net/mac80211/led.c @@ -276,7 +276,7 @@ static void ieee80211_stop_tpt_led_trig(struct ieee80211_local *local) read_lock(&tpt_trig->trig.leddev_list_lock); list_for_each_entry(led_cdev, &tpt_trig->trig.led_cdevs, trig_list) - led_brightness_set(led_cdev, LED_OFF); + led_set_brightness(led_cdev, LED_OFF); read_unlock(&tpt_trig->trig.leddev_list_lock); } |