mirror of https://gitee.com/openkylin/linux.git
leds: [trivial]Remove unnecesary return
the ret is got the status returned by the led_classdev_register, returning ret if the led_classdev_register fails and returning 0 if the led_classdev_register success, can be done by doing just "return ret" at the end. Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
This commit is contained in:
parent
20c0e6b878
commit
1522d02e27
|
@ -106,10 +106,9 @@ static int s3c24xx_led_probe(struct platform_device *dev)
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&dev->dev, "led_classdev_register failed\n");
|
dev_err(&dev->dev, "led_classdev_register failed\n");
|
||||||
kfree(led);
|
kfree(led);
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver s3c24xx_led_driver = {
|
static struct platform_driver s3c24xx_led_driver = {
|
||||||
|
|
Loading…
Reference in New Issue