1
0
Fork 0

leds: leds-gpio: use devm_gpio_request_one

devm_gpio_request_one is device managed and makes error handling
and cleanup simpler.

Cc: Raphael Assenat <raph@8d.com>
Cc: Trent Piepho <tpiepho@freescale.com>
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
hifive-unleashed-5.1
Sachin Kamat 2012-11-25 10:10:20 +05:30 committed by Bryan Wu
parent 4401e48737
commit e3b1d44c35
1 changed files with 2 additions and 6 deletions

View File

@ -126,7 +126,7 @@ static int __devinit create_gpio_led(const struct gpio_led *template,
if (!template->retain_state_suspended)
led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
ret = gpio_request_one(template->gpio,
ret = devm_gpio_request_one(parent, template->gpio,
GPIOF_DIR_OUT | (led_dat->active_low ^ state),
template->name);
if (ret < 0)
@ -136,12 +136,9 @@ static int __devinit create_gpio_led(const struct gpio_led *template,
ret = led_classdev_register(parent, &led_dat->cdev);
if (ret < 0)
goto err;
return ret;
return 0;
err:
gpio_free(led_dat->gpio);
return ret;
}
static void delete_gpio_led(struct gpio_led_data *led)
@ -150,7 +147,6 @@ static void delete_gpio_led(struct gpio_led_data *led)
return;
led_classdev_unregister(&led->cdev);
cancel_work_sync(&led->work);
gpio_free(led->gpio);
}
struct gpio_leds_priv {