Re: [U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable

2015-07-21 Thread Simon Glass
Hi Joe, On 20 July 2015 at 12:10, Joe Hershberger wrote: > Hi Simon, > > On Mon, Jul 20, 2015 at 8:56 AM, Simon Glass wrote: >> Hi Joe, >> >> On 8 July 2015 at 15:07, Simon Glass wrote: >>> Hi Joe, >>> >>> On 8 July 2015 at 14:43, Joe Hershberger wrote: Hi Simon, On Wed, Jul 8,

Re: [U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable

2015-07-20 Thread Joe Hershberger
Hi Simon, On Mon, Jul 20, 2015 at 8:56 AM, Simon Glass wrote: > Hi Joe, > > On 8 July 2015 at 15:07, Simon Glass wrote: >> Hi Joe, >> >> On 8 July 2015 at 14:43, Joe Hershberger wrote: >>> Hi Simon, >>> >>> On Wed, Jul 8, 2015 at 3:31 PM, Simon Glass wrote: +Hans Hi Joe, >>

Re: [U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable

2015-07-20 Thread Simon Glass
Hi Joe, On 8 July 2015 at 15:07, Simon Glass wrote: > Hi Joe, > > On 8 July 2015 at 14:43, Joe Hershberger wrote: >> Hi Simon, >> >> On Wed, Jul 8, 2015 at 3:31 PM, Simon Glass wrote: >>> +Hans >>> >>> Hi Joe, >>> >>> On 7 July 2015 at 22:04, Joe Hershberger wrote: Hi Simon, On

Re: [U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable

2015-07-08 Thread Simon Glass
Hi Joe, On 8 July 2015 at 14:43, Joe Hershberger wrote: > Hi Simon, > > On Wed, Jul 8, 2015 at 3:31 PM, Simon Glass wrote: >> +Hans >> >> Hi Joe, >> >> On 7 July 2015 at 22:04, Joe Hershberger wrote: >>> Hi Simon, >>> >>> On Tue, Jul 7, 2015 at 9:53 PM, Simon Glass wrote: For USB Ethernet

Re: [U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable

2015-07-08 Thread Joe Hershberger
Hi Simon, On Wed, Jul 8, 2015 at 3:31 PM, Simon Glass wrote: > +Hans > > Hi Joe, > > On 7 July 2015 at 22:04, Joe Hershberger wrote: >> Hi Simon, >> >> On Tue, Jul 7, 2015 at 9:53 PM, Simon Glass wrote: >>> For USB Ethernet devices we need to use the usbethaddr environment variable >>> (instead

Re: [U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable

2015-07-08 Thread Simon Glass
+Hans Hi Joe, On 7 July 2015 at 22:04, Joe Hershberger wrote: > Hi Simon, > > On Tue, Jul 7, 2015 at 9:53 PM, Simon Glass wrote: >> For USB Ethernet devices we need to use the usbethaddr environment variable >> (instead of ethaddr) the Ethernet hardware address. Add this to the uclass >> so tha

Re: [U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable

2015-07-07 Thread Joe Hershberger
Hi Simon, On Tue, Jul 7, 2015 at 9:53 PM, Simon Glass wrote: > For USB Ethernet devices we need to use the usbethaddr environment variable > (instead of ethaddr) the Ethernet hardware address. Add this to the uclass > so that it happens automatically. I have always thought that this approach of

[U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable

2015-07-07 Thread Simon Glass
For USB Ethernet devices we need to use the usbethaddr environment variable (instead of ethaddr) the Ethernet hardware address. Add this to the uclass so that it happens automatically. Signed-off-by: Simon Glass --- net/eth.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --g