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

* Re: [PATCH 5/10 v2] Input: cpcap-pwrbutton: Handle return value of platform_get_irq
  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
  0 siblings, 1 reply; 3+ messages in thread
From: Russell King - ARM Linux @ 2017-11-18  8:21 UTC (permalink / raw)
  To: Arvind Yadav
  Cc: dmitry.torokhov, maxime.ripard, wens, linux, wsa, daniel.thompson,
	mcuos.com, linux-kernel, linux-arm-kernel, linux-input

On Sat, Nov 18, 2017 at 02:36:53AM +0530, Arvind Yadav wrote:
> platform_get_irq() can fail here and we must check its return value.

The test should be <= 0, and you need to return an error code for the
0 case.

-- 
RMK's Patch system: http://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 8.8Mbps down 630kbps up
According to speedtest.net: 8.21Mbps down 510kbps up

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

* Re: [PATCH 5/10 v2] Input: cpcap-pwrbutton: Handle return value of platform_get_irq
  2017-11-18  8:21 ` Russell King - ARM Linux
@ 2017-11-18 18:27   ` Dmitry Torokhov
  0 siblings, 0 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2017-11-18 18:27 UTC (permalink / raw)
  To: Russell King - ARM Linux
  Cc: Arvind Yadav, maxime.ripard, wens, linux, wsa, daniel.thompson,
	mcuos.com, linux-kernel, linux-arm-kernel, linux-input

On Sat, Nov 18, 2017 at 08:21:22AM +0000, Russell King - ARM Linux wrote:
> On Sat, Nov 18, 2017 at 02:36:53AM +0530, Arvind Yadav wrote:
> > platform_get_irq() can fail here and we must check its return value.
> 
> The test should be <= 0, and you need to return an error code for the
> 0 case.

Instead of polluting the drivers with special handling of 0 vs negative
error we should have platform_get_irq[_byname] return -EINVAL if it sees
0.

Thanks.

-- 
Dmitry

^ permalink raw reply	[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).