aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/include
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-11-19 18:54:35 +0100
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-11-21 06:47:43 +0000
commit15c012181d073ff68ee8fb5635ed9bde2b4fe23d (patch)
treec592a762e6e3dbca20d52dc2d36166adfa033023 /src/arch/x86/include
parentf67c81fc7030e278cf3dbc906f9ba5e265d843f0 (diff)
drivers/intel/fsp1_0: Drop support
No platform is using this. Change-Id: I3ea6df4d9ce9043755f319f699adc189d754df1f Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36985 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/arch/x86/include')
-rw-r--r--src/arch/x86/include/arch/early_variables.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/arch/x86/include/arch/early_variables.h b/src/arch/x86/include/arch/early_variables.h
index b88495c85b..7393cc94e0 100644
--- a/src/arch/x86/include/arch/early_variables.h
+++ b/src/arch/x86/include/arch/early_variables.h
@@ -49,15 +49,8 @@ int car_active(void);
#define car_set_var(var, val) car_get_var(var) = (val)
/* Get and set a CAR_GLOBAL pointing elsewhere inside CAR. */
-#if !CONFIG(PLATFORM_USES_FSP1_0)
#define car_get_ptr car_get_var
#define car_set_ptr car_set_var
-#else
-void *car_get_reloc_ptr(void *var);
-void car_set_reloc_ptr(void *var, void *val);
-#define car_get_ptr(var) car_get_reloc_ptr(&(var))
-#define car_set_ptr(var, val) car_set_reloc_ptr(&(var), (val))
-#endif
static inline size_t car_data_size(void)
{