]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/video/backlight/adp8860_bl.c: fix error return code in adp8860_led_probe()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Tue, 26 Mar 2013 23:25:03 +0000 (10:25 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 4 Apr 2013 06:12:27 +0000 (17:12 +1100)
Fix to return a negative error code from the error handling
case instead of 0, as returned elsewhere in this function.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/video/backlight/adp8860_bl.c

index 6bb7f3644b3d4324370ba6aaab14e70296441818..75b10f8761276a889bde8be038e23212f8730eba 100644 (file)
@@ -249,12 +249,14 @@ static int adp8860_led_probe(struct i2c_client *client)
                if (led_dat->id > 7 || led_dat->id < 1) {
                        dev_err(&client->dev, "Invalid LED ID %d\n",
                                led_dat->id);
+                       ret = -EINVAL;
                        goto err;
                }
 
                if (pdata->bl_led_assign & (1 << (led_dat->id - 1))) {
                        dev_err(&client->dev, "LED %d used by Backlight\n",
                                led_dat->id);
+                       ret = -EBUSY;
                        goto err;
                }