2024-03-07 18:18:05

by Colin Ian King

[permalink] [raw]
Subject: [PATCH][next][V2] usb: gadget: net2272: Use irqflags in the call to net2272_probe_fin

Currently the variable irqflags is being set but is not being used,
it appears it should be used in the call to net2272_probe_fin
rather than IRQF_TRIGGER_LOW being used. Kudos to Uwe Kleine-König
for suggesting the fix.

Cleans up clang scan build warning:
drivers/usb/gadget/udc/net2272.c:2610:15: warning: variable 'irqflags'
set but not used [-Wunused-but-set-variable]

Fixes: ceb80363b2ec ("USB: net2272: driver for PLX NET2272 USB device controller")

Signed-off-by: Colin Ian King <[email protected]>
---

V2: don't remove irqflags but instead use it in the call to net2272_probe_fin

---
drivers/usb/gadget/udc/net2272.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/gadget/udc/net2272.c b/drivers/usb/gadget/udc/net2272.c
index 12e76bb62c20..19bbc38f3d35 100644
--- a/drivers/usb/gadget/udc/net2272.c
+++ b/drivers/usb/gadget/udc/net2272.c
@@ -2650,7 +2650,7 @@ net2272_plat_probe(struct platform_device *pdev)
goto err_req;
}

- ret = net2272_probe_fin(dev, IRQF_TRIGGER_LOW);
+ ret = net2272_probe_fin(dev, irqflags);
if (ret)
goto err_io;

--
2.39.2



2024-03-07 18:31:17

by Alan Stern

[permalink] [raw]
Subject: Re: [PATCH][next][V2] usb: gadget: net2272: Use irqflags in the call to net2272_probe_fin

On Thu, Mar 07, 2024 at 06:17:34PM +0000, Colin Ian King wrote:
> Currently the variable irqflags is being set but is not being used,
> it appears it should be used in the call to net2272_probe_fin
> rather than IRQF_TRIGGER_LOW being used. Kudos to Uwe Kleine-K?nig
> for suggesting the fix.
>
> Cleans up clang scan build warning:
> drivers/usb/gadget/udc/net2272.c:2610:15: warning: variable 'irqflags'
> set but not used [-Wunused-but-set-variable]
>
> Fixes: ceb80363b2ec ("USB: net2272: driver for PLX NET2272 USB device controller")
>
> Signed-off-by: Colin Ian King <[email protected]>

Acked-by: Alan Stern <[email protected]>

> ---
>
> V2: don't remove irqflags but instead use it in the call to net2272_probe_fin
>
> ---
> drivers/usb/gadget/udc/net2272.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/gadget/udc/net2272.c b/drivers/usb/gadget/udc/net2272.c
> index 12e76bb62c20..19bbc38f3d35 100644
> --- a/drivers/usb/gadget/udc/net2272.c
> +++ b/drivers/usb/gadget/udc/net2272.c
> @@ -2650,7 +2650,7 @@ net2272_plat_probe(struct platform_device *pdev)
> goto err_req;
> }
>
> - ret = net2272_probe_fin(dev, IRQF_TRIGGER_LOW);
> + ret = net2272_probe_fin(dev, irqflags);
> if (ret)
> goto err_io;
>
> --
> 2.39.2
>
>

2024-03-10 11:21:11

by Uwe Kleine-König

[permalink] [raw]
Subject: Re: [PATCH][next][V2] usb: gadget: net2272: Use irqflags in the call to net2272_probe_fin

Hello,

On Thu, Mar 07, 2024 at 06:17:34PM +0000, Colin Ian King wrote:
> Currently the variable irqflags is being set but is not being used,
> it appears it should be used in the call to net2272_probe_fin
> rather than IRQF_TRIGGER_LOW being used. Kudos to Uwe Kleine-K?nig
> for suggesting the fix.
>
> Cleans up clang scan build warning:
> drivers/usb/gadget/udc/net2272.c:2610:15: warning: variable 'irqflags'
> set but not used [-Wunused-but-set-variable]
>
> Fixes: ceb80363b2ec ("USB: net2272: driver for PLX NET2272 USB device controller")
>
> Signed-off-by: Colin Ian King <[email protected]>

Acked-by: Uwe Kleine-K?nig <[email protected]>
Suggested-by: Uwe Kleine-K?nig <[email protected]>

Best regards
Uwe

--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | https://www.pengutronix.de/ |


Attachments:
(No filename) (933.00 B)
signature.asc (499.00 B)
Download all attachments