diff mbox series

input: cpcap-pwrbutton: Add an error handling

Message ID 20210802121740.8700-1-tangbin@cmss.chinamobile.com
State New
Headers show
Series input: cpcap-pwrbutton: Add an error handling | expand

Commit Message

Tang Bin Aug. 2, 2021, 12:17 p.m. UTC
The function cpcap_power_button_probe() does not perform
sufficient error checking after executing platform_get_irq(),
thus fix it.

Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
---
 drivers/input/misc/cpcap-pwrbutton.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Dmitry Torokhov Sept. 6, 2021, 2:07 a.m. UTC | #1
Hi,

On Mon, Aug 02, 2021 at 08:17:40PM +0800, Tang Bin wrote:
> The function cpcap_power_button_probe() does not perform

> sufficient error checking after executing platform_get_irq(),

> thus fix it.


Yes, indeed. request_irq will fail regardless, but it is nice to return
proper error code.

> 

> Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>

> ---

>  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 0abef6321..0a1f2e8b4 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;


I moved the platform_get_irq() here and applied, thank you.

-- 
Dmitry
diff mbox series

Patch

diff --git a/drivers/input/misc/cpcap-pwrbutton.c b/drivers/input/misc/cpcap-pwrbutton.c
index 0abef6321..0a1f2e8b4 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;