[PATCH] usb: dwc3: of-simple: fix noderef.cocci warnings

2017-04-03 Thread kbuild test robot
drivers/usb/dwc3/dwc3-of-simple.c:53:43-49: ERROR: application of sizeof to 
pointer

 sizeof when applied to a pointer typed expression gives the size of
 the pointer

Generated by: scripts/coccinelle/misc/noderef.cocci

CC: Vivek Gautam 
Signed-off-by: Fengguang Wu 
---

 dwc3-of-simple.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/usb/dwc3/dwc3-of-simple.c
+++ b/drivers/usb/dwc3/dwc3-of-simple.c
@@ -50,7 +50,7 @@ static int dwc3_of_simple_reset_init(str
 
simple->num_resets = count;
 
-   simple->resets = devm_kcalloc(dev, count, sizeof(simple->resets),
+   simple->resets = devm_kcalloc(dev, count, sizeof(*simple->resets),
GFP_KERNEL);
if (!simple->resets)
return -ENOMEM;


[PATCH] usb: dwc3: of-simple: fix noderef.cocci warnings

2017-04-03 Thread kbuild test robot
drivers/usb/dwc3/dwc3-of-simple.c:53:43-49: ERROR: application of sizeof to 
pointer

 sizeof when applied to a pointer typed expression gives the size of
 the pointer

Generated by: scripts/coccinelle/misc/noderef.cocci

CC: Vivek Gautam 
Signed-off-by: Fengguang Wu 
---

 dwc3-of-simple.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/usb/dwc3/dwc3-of-simple.c
+++ b/drivers/usb/dwc3/dwc3-of-simple.c
@@ -50,7 +50,7 @@ static int dwc3_of_simple_reset_init(str
 
simple->num_resets = count;
 
-   simple->resets = devm_kcalloc(dev, count, sizeof(simple->resets),
+   simple->resets = devm_kcalloc(dev, count, sizeof(*simple->resets),
GFP_KERNEL);
if (!simple->resets)
return -ENOMEM;