summaryrefslogtreecommitdiffstats
path: root/src/arch/arm
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-11-20 22:22:36 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-11-30 16:11:11 +0000
commit1b8df77ac10769abfe5a028ee0b62a23a1ea5db2 (patch)
tree619accbf15242ba4436400a0bb0ad0162b1e4b37 /src/arch/arm
parent706251d91375241630a4e753512ebeefad56c2bc (diff)
downloadcoreboot-1b8df77ac10769abfe5a028ee0b62a23a1ea5db2.tar.gz
coreboot-1b8df77ac10769abfe5a028ee0b62a23a1ea5db2.tar.bz2
coreboot-1b8df77ac10769abfe5a028ee0b62a23a1ea5db2.zip
arch/*/*/early_variables.h: drop unused files
Kill off NO_GLOBAL_MIGRATION finally! Change-Id: Ieb7d9f5590b3a7dd1fd5c0ce2e51337332434dbd Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37054 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/arm')
-rw-r--r--src/arch/arm/include/arch/early_variables.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/arch/arm/include/arch/early_variables.h b/src/arch/arm/include/arch/early_variables.h
deleted file mode 100644
index 7002a8805e19..000000000000
--- a/src/arch/arm/include/arch/early_variables.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#ifndef ARCH_EARLY_VARIABLES_H
-#define ARCH_EARLY_VARIABLES_H
-
-#define CAR_GLOBAL
-
-static inline void *car_get_var_ptr(void *var) { return var; }
-#define car_get_var(var) (var)
-#define car_set_var(var, val) do { (var) = (val); } while (0)
-
-#define car_get_ptr car_get_var
-#define car_set_ptr car_set_var
-
-#endif