Re: [U-Boot] [PATCH] usb gadget ether: Fix warning in is_eth_addr_valid()

2012-11-04 Thread Tom Rini
On Wed, Oct 31, 2012 at 07:31:12PM -0500, Joe Hershberger wrote: Hi Tom, On Wed, Oct 31, 2012 at 6:30 PM, Tom Rini tr...@ti.com wrote: The gadget ethernet driver needs to keep copies of the MAC address (at both endpoints) as strings so it needs a custom function for validation of the

[U-Boot] [PATCH] usb gadget ether: Fix warning in is_eth_addr_valid()

2012-10-31 Thread Tom Rini
The gadget ethernet driver needs to keep copies of the MAC address (at both endpoints) as strings so it needs a custom function for validation of the MAC. It was not however performing a totally correct check and also was emitting a warning about a set but unused variable. The solution to both

Re: [U-Boot] [PATCH] usb gadget ether: Fix warning in is_eth_addr_valid()

2012-10-31 Thread Joe Hershberger
Hi Tom, On Wed, Oct 31, 2012 at 6:30 PM, Tom Rini tr...@ti.com wrote: The gadget ethernet driver needs to keep copies of the MAC address (at both endpoints) as strings so it needs a custom function for validation of the MAC. It was not however performing a totally correct check and also was