[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220412070131.19848-1-linmq006@gmail.com>
Date: Tue, 12 Apr 2022 07:01:26 +0000
From: Miaoqian Lin <linmq006@...il.com>
To: Dmitry Torokhov <dmitry.torokhov@...il.com>,
Miaoqian Lin <linmq006@...il.com>,
"G, Manjunath Kondaiah" <manjugk@...com>,
Felipe Balbi <balbi@...com>,
"Poddar, Sourav" <sourav.poddar@...com>,
linux-input@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] Input: omap4-keypad - Fix pm_runtime_get_sync() error checking
If the device is already in a runtime PM enabled state
pm_runtime_get_sync() will return 1, so a test for negative
value should be used to check for errors.
Fixes: f77621cc640a ("Input: omap-keypad - dynamically handle register offsets")
Signed-off-by: Miaoqian Lin <linmq006@...il.com>
---
drivers/input/keyboard/omap4-keypad.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/keyboard/omap4-keypad.c b/drivers/input/keyboard/omap4-keypad.c
index 43375b38ee59..8a7ce41b8c56 100644
--- a/drivers/input/keyboard/omap4-keypad.c
+++ b/drivers/input/keyboard/omap4-keypad.c
@@ -393,7 +393,7 @@ static int omap4_keypad_probe(struct platform_device *pdev)
* revision register.
*/
error = pm_runtime_get_sync(dev);
- if (error) {
+ if (error < 0) {
dev_err(dev, "pm_runtime_get_sync() failed\n");
pm_runtime_put_noidle(dev);
return error;
--
2.17.1
Powered by blists - more mailing lists