From 897e1dc86af7b2b9d58c71345c585d130b16232d Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Sat, 27 Feb 2016 22:57:59 -0800 Subject: x86: Use a macro for ROM table alignment Define ROM_TABLE_ALIGN instead of using 1024 directly. Signed-off-by: Bin Meng Reviewed-by: Simon Glass --- arch/x86/include/asm/tables.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/x86/include') diff --git a/arch/x86/include/asm/tables.h b/arch/x86/include/asm/tables.h index 0aa6d9b33e..9e6754f2a5 100644 --- a/arch/x86/include/asm/tables.h +++ b/arch/x86/include/asm/tables.h @@ -14,6 +14,8 @@ */ #define ROM_TABLE_ADDR 0xf0000 +#define ROM_TABLE_ALIGN 1024 + /** * table_compute_checksum() - Compute a table checksum * -- cgit