[U-Boot] [PATCH 2/2 v2] usb: r8a66597: Fix initilization size of r8a66597 info structure

Initialization of r8a66597 info structure is not enough. Because initilization was used size of pointer. This fixes that use size of r8a6659 info structure.
Signed-off-by: Yasuhisa Umano yasuhisa.umano.zc@renesas.com --- v2 : Change from sizeof(struct r8a66597) to sizeof(*r8a66597)
drivers/usb/host/r8a66597-hcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c index c58d2a9..5114544 100644 --- a/drivers/usb/host/r8a66597-hcd.c +++ b/drivers/usb/host/r8a66597-hcd.c @@ -807,7 +807,7 @@ int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
R8A66597_DPRINT("%s\n", __func__);
- memset(r8a66597, 0, sizeof(r8a66597)); + memset(r8a66597, 0, sizeof(*r8a66597)); r8a66597->reg = CONFIG_R8A66597_BASE_ADDR;
disable_controller(r8a66597);

On Friday, April 18, 2014 at 04:33:15 AM, Yasuhisa Umano wrote:
Initialization of r8a66597 info structure is not enough. Because initilization was used size of pointer. This fixes that use size of r8a6659 info structure.
Signed-off-by: Yasuhisa Umano yasuhisa.umano.zc@renesas.com
It's in u-boot-usb/master , please double-check if all is correct there. Thanks!
Best regards, Marek Vasut

On Friday, April 18, 2014 at 04:33:15 AM, Yasuhisa Umano wrote:
Initialization of r8a66597 info structure is not enough. Because initilization was used size of pointer. This fixes that use size of r8a6659 info structure.
Signed-off-by: Yasuhisa Umano yasuhisa.umano.zc@renesas.com
I'm not sure how those two patches disappeared from my radar. Sorry about that, applied, thank you.
Best regards, Marek Vasut
participants (2)
-
Marek Vasut
-
Yasuhisa Umano