Message ID | 20200710073033.58714-1-weiyongjun1@huawei.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 14602c55cb738303f2b48bd0392320f2911a58d6 |
Headers | show |
Series | [-next] usb: gadget: udc: atmel: remove unused variable 'pp' | expand |
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 >
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];
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(-)