Re: [U-Boot] [PATCH v6 07/12] net: pch_gbe: Make 64 bit safe

2016-08-04 Thread Joe Hershberger
On Thu, Aug 4, 2016 at 5:29 AM, Paul Burton wrote: > The pch_gbe driver previously casted pointers to & from unsigned 32 bit > integers in many locations. This breaks the driver on 64 bit systems, > producing streams of compiler warnings about mismatched pointer & > integer sizes and then failing

Re: [U-Boot] [PATCH v6 07/12] net: pch_gbe: Make 64 bit safe

2016-08-04 Thread Paul Burton
On 04/08/16 17:23, Joe Hershberger wrote: Hi Paul, On Thu, Aug 4, 2016 at 5:29 AM, Paul Burton wrote: The pch_gbe driver previously casted pointers to & from unsigned 32 bit integers in many locations. This breaks the driver on 64 bit systems, producing streams of compiler warnings about mis

Re: [U-Boot] [PATCH v6 07/12] net: pch_gbe: Make 64 bit safe

2016-08-04 Thread Joe Hershberger
Hi Paul, On Thu, Aug 4, 2016 at 5:29 AM, Paul Burton wrote: > The pch_gbe driver previously casted pointers to & from unsigned 32 bit > integers in many locations. This breaks the driver on 64 bit systems, > producing streams of compiler warnings about mismatched pointer & > integer sizes and the

[U-Boot] [PATCH v6 07/12] net: pch_gbe: Make 64 bit safe

2016-08-04 Thread Paul Burton
The pch_gbe driver previously casted pointers to & from unsigned 32 bit integers in many locations. This breaks the driver on 64 bit systems, producing streams of compiler warnings about mismatched pointer & integer sizes and then failing to keep track of addresses correctly at runtime. Fix the dr