Re: [U-Boot] [PATCH v3 4/8] smbios: Allow compilation on 64bit systems

2016-08-16 Thread Simon Glass
On 16 August 2016 at 02:55, Alexander Graf wrote: > The SMBIOS generation code passes pointers as u32. That causes the compiler > to warn on casts to pointers. This patch moves all address pointers to > uintptr_t instead. > > Technically u32 would be enough for the current SMBIOS2 style tables, bu

[U-Boot] [PATCH v3 4/8] smbios: Allow compilation on 64bit systems

2016-08-16 Thread Alexander Graf
The SMBIOS generation code passes pointers as u32. That causes the compiler to warn on casts to pointers. This patch moves all address pointers to uintptr_t instead. Technically u32 would be enough for the current SMBIOS2 style tables, but we may want to extend the code to SMBIOS3 in the future wh