Re: [U-Boot] [PATCH v6 05/10] cpu: Add DMTF id and family fields

2016-09-06 Thread Bin Meng
On Fri, Aug 19, 2016 at 7:23 AM, Alexander Graf wrote: > For SMBIOS tables we need to know the CPU family as well as CPU IDs. This > patches allocates some space for them in the cpu device and populates it > on x86. > > Signed-off-by: Alexander Graf > --- > arch/x86/cpu/cpu_x86.c | 5 + > in

Re: [U-Boot] [PATCH v6 05/10] cpu: Add DMTF id and family fields

2016-08-20 Thread Simon Glass
On 18 August 2016 at 17:23, Alexander Graf wrote: > For SMBIOS tables we need to know the CPU family as well as CPU IDs. This > patches allocates some space for them in the cpu device and populates it > on x86. > > Signed-off-by: Alexander Graf > --- > arch/x86/cpu/cpu_x86.c | 5 + > include

[U-Boot] [PATCH v6 05/10] cpu: Add DMTF id and family fields

2016-08-18 Thread Alexander Graf
For SMBIOS tables we need to know the CPU family as well as CPU IDs. This patches allocates some space for them in the cpu device and populates it on x86. Signed-off-by: Alexander Graf --- arch/x86/cpu/cpu_x86.c | 5 + include/cpu.h | 2 ++ 2 files changed, 7 insertions(+) diff --g