diff options
author | Aaron Durbin <adurbin@chromium.org> | 2014-08-14 08:35:11 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2014-08-15 03:44:46 +0200 |
commit | a0a3727dbbd7f3ae9f9021e0797ce2fc61d1b79e (patch) | |
tree | a0233b3d5b638eb05bf5a4d57ee64e73187da677 /src/mainboard/bcom | |
parent | b7f1bfcf289f218f05dfb17561a5b868eea65b92 (diff) |
intel/cpu: rename car.h to romstage.h
This header has nothing to do with cache-as-ram. Therefore, 'car'
is the wrong term to use. It is about providing a prototype for
*romstage*.
Change-Id: Ibc5bc6f3c38e74d6337c12f246846853ceae4743
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/6661
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/bcom')
-rw-r--r-- | src/mainboard/bcom/winnet100/romstage.c | 2 | ||||
-rw-r--r-- | src/mainboard/bcom/winnetp680/romstage.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/bcom/winnet100/romstage.c b/src/mainboard/bcom/winnet100/romstage.c index e733003b5c..15362e3b28 100644 --- a/src/mainboard/bcom/winnet100/romstage.c +++ b/src/mainboard/bcom/winnet100/romstage.c @@ -31,7 +31,7 @@ #define SERIAL_DEV PNP_DEV(0x2e, PC97317_SP1) -#include <cpu/intel/car.h> +#include <cpu/intel/romstage.h> static void main(unsigned long bist) { pc97317_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE); diff --git a/src/mainboard/bcom/winnetp680/romstage.c b/src/mainboard/bcom/winnetp680/romstage.c index 3676a6d145..898ad1a402 100644 --- a/src/mainboard/bcom/winnetp680/romstage.c +++ b/src/mainboard/bcom/winnetp680/romstage.c @@ -81,7 +81,7 @@ static const struct mem_controller ctrl = { .channel0 = { DIMM0 }, }; -#include <cpu/intel/car.h> +#include <cpu/intel/romstage.h> void main(unsigned long bist) { /* Enable multifunction for northbridge. */ |