Re: [U-Boot] [PATCH] net: smsc95xx: Use correct get_unaligned functions

2016-07-06 Thread Joe Hershberger
Hi Mark, On Mon, Jun 13, 2016 at 3:59 PM, Chris Packham wrote: > On Mon, Jun 13, 2016 at 8:01 PM, Chris Packham > wrote: >> Hi Mark, >> >> On Mon, Jun 13, 2016 at 5:00 PM, Mark Tomlinson >> wrote: >>> The

Re: [U-Boot] [PATCH] net: smsc95xx: Use correct get_unaligned functions

2016-06-14 Thread Chris Packham
On Mon, Jun 13, 2016 at 8:01 PM, Chris Packham wrote: > Hi Mark, > > On Mon, Jun 13, 2016 at 5:00 PM, Mark Tomlinson > wrote: >> The __get_unaligned_le* functions may not be declared on all platforms. >> Instead, get_unaligned_le*

Re: [U-Boot] [PATCH] net: smsc95xx: Use correct get_unaligned functions

2016-06-13 Thread Chris Packham
Hi Mark, On Mon, Jun 13, 2016 at 5:00 PM, Mark Tomlinson wrote: > The __get_unaligned_le* functions may not be declared on all platforms. > Instead, get_unaligned_le* should be used. On many platforms both of > these are the same function. > > Change-Id:

[U-Boot] [PATCH] net: smsc95xx: Use correct get_unaligned functions

2016-06-13 Thread Mark Tomlinson
The __get_unaligned_le* functions may not be declared on all platforms. Instead, get_unaligned_le* should be used. On many platforms both of these are the same function. Change-Id: If28222615e85a6f34f3fde42eb21c6f56a2cb988 Reviewed-by: Chris Packham ---