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>
This commit is contained in:
Aaron Durbin
2014-08-14 08:35:11 -05:00
committed by Aaron Durbin
parent b7f1bfcf28
commit a0a3727dbb
114 changed files with 119 additions and 119 deletions

View File

@@ -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 */

View File

@@ -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 */