diff mbox series

[-next] gpio: exar: Fix error return code in gpio_exar_probe()

Message ID 20200506124256.87628-1-weiyongjun1@huawei.com
State New
Headers show
Series [-next] gpio: exar: Fix error return code in gpio_exar_probe() | expand

Commit Message

Wei Yongjun May 6, 2020, 12:42 p.m. UTC
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: 7ecced0934e5 ("gpio: exar: add a check for the return value of ida_simple_get fails")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 drivers/gpio/gpio-exar.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Bartosz Golaszewski May 7, 2020, 11:13 a.m. UTC | #1
śr., 6 maj 2020 o 14:39 Wei Yongjun <weiyongjun1@huawei.com> napisał(a):
>
> Fix to return a negative error code from the error handling
> case instead of 0, as done elsewhere in this function.
>
> Fixes: 7ecced0934e5 ("gpio: exar: add a check for the return value of ida_simple_get fails")
> Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
> ---
>  drivers/gpio/gpio-exar.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/gpio-exar.c b/drivers/gpio/gpio-exar.c
> index da1ef0b1c291..c5c3fa5b519f 100644
> --- a/drivers/gpio/gpio-exar.c
> +++ b/drivers/gpio/gpio-exar.c
> @@ -148,8 +148,10 @@ static int gpio_exar_probe(struct platform_device *pdev)
>         mutex_init(&exar_gpio->lock);
>
>         index = ida_simple_get(&ida_index, 0, 0, GFP_KERNEL);
> -       if (index < 0)
> +       if (index < 0) {
> +               ret = index;
>                 goto err_destroy;
> +       }
>
>         sprintf(exar_gpio->name, "exar_gpio%d", index);
>         exar_gpio->gpio_chip.label = exar_gpio->name;
>
>
>

This is already fixed in my for-current branch.

Bart
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-exar.c b/drivers/gpio/gpio-exar.c
index da1ef0b1c291..c5c3fa5b519f 100644
--- a/drivers/gpio/gpio-exar.c
+++ b/drivers/gpio/gpio-exar.c
@@ -148,8 +148,10 @@  static int gpio_exar_probe(struct platform_device *pdev)
 	mutex_init(&exar_gpio->lock);
 
 	index = ida_simple_get(&ida_index, 0, 0, GFP_KERNEL);
-	if (index < 0)
+	if (index < 0) {
+		ret = index;
 		goto err_destroy;
+	}
 
 	sprintf(exar_gpio->name, "exar_gpio%d", index);
 	exar_gpio->gpio_chip.label = exar_gpio->name;