Re: [U-Boot] [PATCH resend v3 2/6] drivers: usb: gadget: ether: access network_started using local variable

2016-12-02 Thread Simon Glass
On 29 November 2016 at 16:20, Joe Hershberger wrote: > On Thu, Nov 17, 2016 at 11:19 PM, Mugunthan V N wrote: >> network_started of struct eth_dev can be accessed using local >> variable dev and no reason to access it with the global struct. >> >> Signed-off-by: Mugunthan V N >> Reviewed-by: Sim

Re: [U-Boot] [PATCH resend v3 2/6] drivers: usb: gadget: ether: access network_started using local variable

2016-11-29 Thread Joe Hershberger
On Thu, Nov 17, 2016 at 11:19 PM, Mugunthan V N wrote: > network_started of struct eth_dev can be accessed using local > variable dev and no reason to access it with the global struct. > > Signed-off-by: Mugunthan V N > Reviewed-by: Simon Glass Acked-by: Joe Hershberger ___

[U-Boot] [PATCH resend v3 2/6] drivers: usb: gadget: ether: access network_started using local variable

2016-11-17 Thread Mugunthan V N
network_started of struct eth_dev can be accessed using local variable dev and no reason to access it with the global struct. Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass --- drivers/usb/gadget/ether.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drive