linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] usb: gadget: udc: atmel: remove unused variable 'pp'
@ 2020-07-10  7:30 Wei Yongjun
  2020-07-10  9:47 ` Claudiu.Beznea
  0 siblings, 1 reply; 2+ messages in thread
From: Wei Yongjun @ 2020-07-10  7:30 UTC (permalink / raw)
  To: Hulk Robot, Cristian Birsan, Felipe Balbi, Greg Kroah-Hartman,
	Nicolas Ferre, Alexandre Belloni, Ludovic Desroches,
	Gregory CLEMENT
  Cc: linux-usb, Wei Yongjun, linux-arm-kernel

Gcc report build warning as follows:

drivers/usb/gadget/udc/atmel_usba_udc.c:2106:22: warning:
 variable pp set but not used [-Wunused-but-set-variable]
 2106 |  struct device_node *pp;
      |                      ^~

After commit e78355b577c4 ("usb: gadget: udc: atmel: Don't
use DT to configure end point"), variable 'pp' is never used,
so removing it to avoid warning.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 drivers/usb/gadget/udc/atmel_usba_udc.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/usb/gadget/udc/atmel_usba_udc.c b/drivers/usb/gadget/udc/atmel_usba_udc.c
index d69f61ff0181..a10b8d406e62 100644
--- a/drivers/usb/gadget/udc/atmel_usba_udc.c
+++ b/drivers/usb/gadget/udc/atmel_usba_udc.c
@@ -2103,7 +2103,6 @@ static struct usba_ep * atmel_udc_of_init(struct platform_device *pdev,
 {
 	struct device_node *np = pdev->dev.of_node;
 	const struct of_device_id *match;
-	struct device_node *pp;
 	int i, ret;
 	struct usba_ep *eps, *ep;
 	const struct usba_udc_config *udc_config;
@@ -2128,7 +2127,6 @@ static struct usba_ep * atmel_udc_of_init(struct platform_device *pdev,
 						GPIOD_IN);
 
 	if (fifo_mode == 0) {
-		pp = NULL;
 		udc->num_ep = udc_config->num_ep;
 		udc->configured_ep = 1;
 	} else {
@@ -2144,7 +2142,6 @@ static struct usba_ep * atmel_udc_of_init(struct platform_device *pdev,
 
 	INIT_LIST_HEAD(&eps[0].ep.ep_list);
 
-	pp = NULL;
 	i = 0;
 	while (i < udc->num_ep) {
 		const struct usba_ep_config *ep_cfg = &udc_config->config[i];


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH -next] usb: gadget: udc: atmel: remove unused variable 'pp'
  2020-07-10  7:30 [PATCH -next] usb: gadget: udc: atmel: remove unused variable 'pp' Wei Yongjun
@ 2020-07-10  9:47 ` Claudiu.Beznea
  0 siblings, 0 replies; 2+ messages in thread
From: Claudiu.Beznea @ 2020-07-10  9:47 UTC (permalink / raw)
  To: weiyongjun1, hulkci, Cristian.Birsan, balbi, gregkh,
	Nicolas.Ferre, alexandre.belloni, Ludovic.Desroches,
	gregory.clement
  Cc: linux-usb, linux-arm-kernel

Hi,

On 10.07.2020 10:30, Wei Yongjun wrote:
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
> 
> Gcc report build warning as follows:
> 
> drivers/usb/gadget/udc/atmel_usba_udc.c:2106:22: warning:
>  variable pp set but not used [-Wunused-but-set-variable]
>  2106 |  struct device_node *pp;
>       |                      ^~
> 

This has been also proposed in series with title
"[PATCH 00/32] Fix the final bunch of W=1 issues in USB"

> After commit e78355b577c4 ("usb: gadget: udc: atmel: Don't
> use DT to configure end point"), variable 'pp' is never used,
> so removing it to avoid warning.
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
> ---
>  drivers/usb/gadget/udc/atmel_usba_udc.c | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/drivers/usb/gadget/udc/atmel_usba_udc.c b/drivers/usb/gadget/udc/atmel_usba_udc.c
> index d69f61ff0181..a10b8d406e62 100644
> --- a/drivers/usb/gadget/udc/atmel_usba_udc.c
> +++ b/drivers/usb/gadget/udc/atmel_usba_udc.c
> @@ -2103,7 +2103,6 @@ static struct usba_ep * atmel_udc_of_init(struct platform_device *pdev,
>  {
>         struct device_node *np = pdev->dev.of_node;
>         const struct of_device_id *match;
> -       struct device_node *pp;
>         int i, ret;
>         struct usba_ep *eps, *ep;
>         const struct usba_udc_config *udc_config;
> @@ -2128,7 +2127,6 @@ static struct usba_ep * atmel_udc_of_init(struct platform_device *pdev,
>                                                 GPIOD_IN);
> 
>         if (fifo_mode == 0) {
> -               pp = NULL;
>                 udc->num_ep = udc_config->num_ep;
>                 udc->configured_ep = 1;
>         } else {
> @@ -2144,7 +2142,6 @@ static struct usba_ep * atmel_udc_of_init(struct platform_device *pdev,
> 
>         INIT_LIST_HEAD(&eps[0].ep.ep_list);
> 
> -       pp = NULL;
>         i = 0;
>         while (i < udc->num_ep) {
>                 const struct usba_ep_config *ep_cfg = &udc_config->config[i];
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> 
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2020-07-10  9:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-10  7:30 [PATCH -next] usb: gadget: udc: atmel: remove unused variable 'pp' Wei Yongjun
2020-07-10  9:47 ` Claudiu.Beznea

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).