diff options
author | Shuah Khan <shuahkhan@gmail.com> | 2012-06-13 16:34:30 -0400 |
---|---|---|
committer | Bryan Wu <bryan.wu@canonical.com> | 2012-07-23 19:52:34 -0400 |
commit | 19cd67e2d51225b164560b54b85f943e07deee8a (patch) | |
tree | cadec9758a57fe2a805081e47f0439c870deb6d0 /net/mac80211/led.c | |
parent | 0da3e65ba892b8c63d55fa5ec197b6fae55f75f8 (diff) |
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/led.c')
-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) | |||
276 | 276 | ||
277 | read_lock(&tpt_trig->trig.leddev_list_lock); | 277 | read_lock(&tpt_trig->trig.leddev_list_lock); |
278 | list_for_each_entry(led_cdev, &tpt_trig->trig.led_cdevs, trig_list) | 278 | list_for_each_entry(led_cdev, &tpt_trig->trig.led_cdevs, trig_list) |
279 | led_brightness_set(led_cdev, LED_OFF); | 279 | led_set_brightness(led_cdev, LED_OFF); |
280 | read_unlock(&tpt_trig->trig.leddev_list_lock); | 280 | read_unlock(&tpt_trig->trig.leddev_list_lock); |
281 | } | 281 | } |
282 | 282 | ||