From cc96624de4b7b80a7c502d5a99197a71be7a0cf6 Mon Sep 17 00:00:00 2001 From: Alexandru Gagniuc Date: Thu, 7 Jan 2016 19:10:24 -0800 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/12867 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/arch/x86/bootblock_normal.c | 2 +- src/arch/x86/bootblock_simple.c | 2 +- .../x86/include/arch/{bootblock_common.h => bootblock_romcc.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/arch/x86/include/arch/{bootblock_common.h => bootblock_romcc.h} (100%) diff --git a/src/arch/x86/bootblock_normal.c b/src/arch/x86/bootblock_normal.c index 33fb1d4696..d6aa79a6d5 100644 --- a/src/arch/x86/bootblock_normal.c +++ b/src/arch/x86/bootblock_normal.c @@ -12,7 +12,7 @@ */ #include -#include +#include #include #include diff --git a/src/arch/x86/bootblock_simple.c b/src/arch/x86/bootblock_simple.c index 2ed315f9e7..5a0b56b625 100644 --- a/src/arch/x86/bootblock_simple.c +++ b/src/arch/x86/bootblock_simple.c @@ -12,7 +12,7 @@ */ #include -#include +#include #include 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