aboutsummaryrefslogtreecommitdiff
path: root/src/arch/ppc64/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/ppc64/include')
-rw-r--r--src/arch/ppc64/include/arch/early_variables.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/arch/ppc64/include/arch/early_variables.h b/src/arch/ppc64/include/arch/early_variables.h
deleted file mode 100644
index 05b8bc7e48..0000000000
--- a/src/arch/ppc64/include/arch/early_variables.h
+++ /dev/null
@@ -1,27 +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
-
-#define CAR_MIGRATE(migrate_fn_)
-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