linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 5/10 v2] Input: cpcap-pwrbutton: Handle return value of platform_get_irq
@ 2017-11-17 21:06 Arvind Yadav
  2017-11-18  8:21 ` Russell King - ARM Linux
  0 siblings, 1 reply; 3+ messages in thread
From: Arvind Yadav @ 2017-11-17 21:06 UTC (permalink / raw)
  To: dmitry.torokhov, maxime.ripard, wens, linux, wsa, daniel.thompson,
	mcuos.com
  Cc: linux-kernel, linux-input, linux-arm-kernel

platform_get_irq() can fail here and we must check its return value.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
changes in v2 :
              return irq instead of -ENODEV.

 drivers/input/misc/cpcap-pwrbutton.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/input/misc/cpcap-pwrbutton.c b/drivers/input/misc/cpcap-pwrbutton.c
index 0abef63..3a0626b 100644
--- a/drivers/input/misc/cpcap-pwrbutton.c
+++ b/drivers/input/misc/cpcap-pwrbutton.c
@@ -57,6 +57,9 @@ static int cpcap_power_button_probe(struct platform_device *pdev)
 	int irq = platform_get_irq(pdev, 0);
 	int err;
 
+	if (irq < 0)
+		return irq;
+
 	button = devm_kmalloc(&pdev->dev, sizeof(*button), GFP_KERNEL);
 	if (!button)
 		return -ENOMEM;
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-11-18 18:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-17 21:06 [PATCH 5/10 v2] Input: cpcap-pwrbutton: Handle return value of platform_get_irq Arvind Yadav
2017-11-18  8:21 ` Russell King - ARM Linux
2017-11-18 18:27   ` Dmitry Torokhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).