Re: [U-Boot] [PATCH 05/12] x86: Use a macro for ROM table alignment

2016-02-28 Thread Bin Meng
On Mon, Feb 29, 2016 at 12:19 PM, Simon Glass wrote: > On 27 February 2016 at 23:57, Bin Meng wrote: >> Define ROM_TABLE_ALIGN instead of using 1024 directly. >> >> Signed-off-by: Bin Meng >> --- >> >> arch/x86/include/asm/tables.h | 2 ++ >> arch/x86/lib/tables.c | 10 +- >> 2

Re: [U-Boot] [PATCH 05/12] x86: Use a macro for ROM table alignment

2016-02-28 Thread Simon Glass
On 27 February 2016 at 23:57, Bin Meng wrote: > Define ROM_TABLE_ALIGN instead of using 1024 directly. > > Signed-off-by: Bin Meng > --- > > arch/x86/include/asm/tables.h | 2 ++ > arch/x86/lib/tables.c | 10 +- > 2 files changed, 7 insertions(+), 5 deletions(-) Reviewed-by: Si

[U-Boot] [PATCH 05/12] x86: Use a macro for ROM table alignment

2016-02-27 Thread Bin Meng
Define ROM_TABLE_ALIGN instead of using 1024 directly. Signed-off-by: Bin Meng --- arch/x86/include/asm/tables.h | 2 ++ arch/x86/lib/tables.c | 10 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/arch/x86/include/asm/tables.h b/arch/x86/include/asm/tables.h i