mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
Input: gpio_keys_polled - suppress deferred probe error for gpio
[ Upstream commit 963465a33141d0d52338e77f80fe543d2c9dc053 ] On a PC Engines APU our admins are faced with: $ dmesg | grep -c "gpio-keys-polled gpio-keys-polled: unable to claim gpio 0, err=-517" 261 Such a message always appears when e.g. a new USB device is plugged in. Suppress this message which considerably clutters the kernel log for EPROBE_DEFER (i.e. -517). Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/20240305101042.10953-2-u.kleine-koenig@pengutronix.de Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Sasha Levin
parent
374709a7e5
commit
d575eb8747
@@ -319,12 +319,10 @@ static int gpio_keys_polled_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
error = devm_gpio_request_one(dev, button->gpio,
|
error = devm_gpio_request_one(dev, button->gpio,
|
||||||
flags, button->desc ? : DRV_NAME);
|
flags, button->desc ? : DRV_NAME);
|
||||||
if (error) {
|
if (error)
|
||||||
dev_err(dev,
|
return dev_err_probe(dev, error,
|
||||||
"unable to claim gpio %u, err=%d\n",
|
"unable to claim gpio %u\n",
|
||||||
button->gpio, error);
|
button->gpio);
|
||||||
return error;
|
|
||||||
}
|
|
||||||
|
|
||||||
bdata->gpiod = gpio_to_desc(button->gpio);
|
bdata->gpiod = gpio_to_desc(button->gpio);
|
||||||
if (!bdata->gpiod) {
|
if (!bdata->gpiod) {
|
||||||
|
|||||||
Reference in New Issue
Block a user