Input: melfas_mip4 - fix return value check in mip4_probe()
authorYang Yingliang <yangyingliang@huawei.com>
Sat, 24 Sep 2022 03:07:15 +0000 (11:07 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Oct 2022 11:16:50 +0000 (13:16 +0200)
[ Upstream commit a54dc27bd25f20ee3ea2009584b3166d25178243 ]

devm_gpiod_get_optional() may return ERR_PTR(-EPROBE_DEFER),
add a minus sign to fix it.

Fixes: 6ccb1d8f78bd ("Input: add MELFAS MIP4 Touchscreen driver")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20220924030715.1653538-1-yangyingliang@huawei.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/input/touchscreen/melfas_mip4.c

index 05108c2fea934f863e8eee2dc7a23d0d74bfe89c..633d7e1dc7d67d1e32f0a874b510fa7e26071750 100644 (file)
@@ -1469,7 +1469,7 @@ static int mip4_probe(struct i2c_client *client, const struct i2c_device_id *id)
                                              "ce", GPIOD_OUT_LOW);
        if (IS_ERR(ts->gpio_ce)) {
                error = PTR_ERR(ts->gpio_ce);
-               if (error != EPROBE_DEFER)
+               if (error != -EPROBE_DEFER)
                        dev_err(&client->dev,
                                "Failed to get gpio: %d\n", error);
                return error;