commit | cc96624de4b7b80a7c502d5a99197a71be7a0cf6 | [log] [tgz] |
---|---|---|
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | Thu Jan 07 19:10:24 2016 -0800 |
committer | Aaron Durbin <adurbin@chromium.org> | Thu Jan 21 05:37:19 2016 +0100 |
tree | 5cdc3511ad8bc779002f241abcdf966b0a63f4ed | |
parent | 89683c0d2676b462be58a09c9a7df55cc1c9b57a [diff] |
arch/x86/include: Rename bootblock_common to bootblock_romcc.h This header is only used for the bootblock compiled with ROMCC. As the follow-on patches introduce a bootblock which does not make use of ROMCC, rename this header to prevent confusion. Change-Id: Id29c5bc6928c11cc7cb922fcfac71e5a3dcd113c Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-on: https://review.coreboot.org/12867 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
diff --git a/src/arch/x86/bootblock_normal.c b/src/arch/x86/bootblock_normal.c index 33fb1d4..d6aa79a 100644 --- a/src/arch/x86/bootblock_normal.c +++ b/src/arch/x86/bootblock_normal.c
@@ -12,7 +12,7 @@ */ #include <smp/node.h> -#include <arch/bootblock_common.h> +#include <arch/bootblock_romcc.h> #include <pc80/mc146818rtc.h> #include <halt.h>
diff --git a/src/arch/x86/bootblock_simple.c b/src/arch/x86/bootblock_simple.c index 2ed315f..5a0b56b 100644 --- a/src/arch/x86/bootblock_simple.c +++ b/src/arch/x86/bootblock_simple.c
@@ -12,7 +12,7 @@ */ #include <smp/node.h> -#include <arch/bootblock_common.h> +#include <arch/bootblock_romcc.h> #include <halt.h> static void main(unsigned long bist)
diff --git a/src/arch/x86/include/arch/bootblock_common.h b/src/arch/x86/include/arch/bootblock_romcc.h similarity index 100% rename from src/arch/x86/include/arch/bootblock_common.h rename to src/arch/x86/include/arch/bootblock_romcc.h