diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-07-01 10:40:08 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-07-01 20:18:21 +0200 |
commit | d0ed7eef7413cc753b03e2cfba36ef9208491d71 (patch) | |
tree | 1ec3420f286639f7006f91a0ef80f5f8b6cd9472 /src | |
parent | 04fb7a81c1a08e3f4276dcdc489ea51238d36b2b (diff) | |
download | coreboot-d0ed7eef7413cc753b03e2cfba36ef9208491d71.tar.xz |
tegra210: Include correct include files
Some include files were unnecessary, and program_loading.h
was missing.
Change-Id: Ief3d970af5fbbb6b79da06ba3ea1d8613bfc314f
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: http://review.coreboot.org/10749
Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/nvidia/tegra210/verstage.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/soc/nvidia/tegra210/verstage.c b/src/soc/nvidia/tegra210/verstage.c index 1241f248ce..6a4df29018 100644 --- a/src/soc/nvidia/tegra210/verstage.c +++ b/src/soc/nvidia/tegra210/verstage.c @@ -20,11 +20,9 @@ #include <arch/cache.h> #include <arch/exception.h> #include <arch/hlt.h> -#include <arch/stages.h> -#include <console/console.h> #include <soc/verstage.h> -#include <timestamp.h> -#include <vendorcode/google/chromeos/chromeos.h> +#include <console/console.h> +#include <program_loading.h> void __attribute__((weak)) verstage_mainboard_init(void) { |