From a0a3727dbbd7f3ae9f9021e0797ce2fc61d1b79e Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Thu, 14 Aug 2014 08:35:11 -0500 Subject: 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 Reviewed-on: http://review.coreboot.org/6661 Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/include/cpu/intel/car.h | 7 ------- src/include/cpu/intel/romstage.h | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 src/include/cpu/intel/car.h create mode 100644 src/include/cpu/intel/romstage.h (limited to 'src/include/cpu/intel') diff --git a/src/include/cpu/intel/car.h b/src/include/cpu/intel/car.h deleted file mode 100644 index dc89ffc204..0000000000 --- a/src/include/cpu/intel/car.h +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef _CPU_INTEL_CAR_H -#define _CPU_INTEL_CAR_H - -/* std signature of entry-point to romstage.c */ -void main(unsigned long bist); - -#endif /* _CPU_INTEL_CAR_H */ diff --git a/src/include/cpu/intel/romstage.h b/src/include/cpu/intel/romstage.h new file mode 100644 index 0000000000..0ebb91266b --- /dev/null +++ b/src/include/cpu/intel/romstage.h @@ -0,0 +1,7 @@ +#ifndef _CPU_INTEL_ROMSTAGE_H +#define _CPU_INTEL_ROMSTAGE_H + +/* std signature of entry-point to romstage.c */ +void main(unsigned long bist); + +#endif /* _CPU_INTEL_ROMSTAGE_H */ -- cgit v1.2.3