Re: [U-Boot] [PATCH 01/10] net: sandbox: Move disabled flag into priv struct

2018-09-25 Thread Bin Meng
On Wed, Jul 25, 2018 at 5:40 AM Joe Hershberger wrote: > > Store the per-device data with the device. > > Signed-off-by: Joe Hershberger > --- > > drivers/net/sandbox.c | 18 ++ > 1 file changed, 14 insertions(+), 4 deletions(-) > Reviewed-by: Bin Meng

Re: [U-Boot] [PATCH 01/10] net: sandbox: Move disabled flag into priv struct

2018-08-02 Thread Simon Glass
On 24 July 2018 at 15:40, Joe Hershberger wrote: > Store the per-device data with the device. > > Signed-off-by: Joe Hershberger > --- > > drivers/net/sandbox.c | 18 ++ > 1 file changed, 14 insertions(+), 4 deletions(-) Reviewed-by: Simon Glass

[U-Boot] [PATCH 01/10] net: sandbox: Move disabled flag into priv struct

2018-07-24 Thread Joe Hershberger
Store the per-device data with the device. Signed-off-by: Joe Hershberger --- drivers/net/sandbox.c | 18 ++ 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/drivers/net/sandbox.c b/drivers/net/sandbox.c index b71c8f88d9..60fe065ee5 100644 ---