summaryrefslogtreecommitdiff
path: root/payloads/coreinfo/coreinfo.c
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2016-03-11 17:30:14 +0100
committerStefan Reinauer <stefan.reinauer@coreboot.org>2016-03-13 08:24:49 +0100
commitd43186418a54a1edd8d9887486b73c80007244fa (patch)
tree05dc5109efe2480342032ad76563e2d8dc25974c /payloads/coreinfo/coreinfo.c
parentfa31751fc7eb849bf70ce71664fd73581baef700 (diff)
downloadcoreboot-d43186418a54a1edd8d9887486b73c80007244fa.tar.xz
coreinfo: Remove the LAR module
Since libpayload's LAR support was dropped in If6e36569cd, this module doesn't compile anymore. Change-Id: I98f25613a1728e94704d9e9ccb65fd6ba33968b9 Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-on: https://review.coreboot.org/14037 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'payloads/coreinfo/coreinfo.c')
-rw-r--r--payloads/coreinfo/coreinfo.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c
index effe94fe3a..8a6b3f53c3 100644
--- a/payloads/coreinfo/coreinfo.c
+++ b/payloads/coreinfo/coreinfo.c
@@ -24,7 +24,6 @@ extern struct coreinfo_module multiboot_module;
extern struct coreinfo_module nvram_module;
extern struct coreinfo_module bootlog_module;
extern struct coreinfo_module ramdump_module;
-extern struct coreinfo_module lar_module;
extern struct coreinfo_module cbfs_module;
struct coreinfo_module *system_modules[] = {
@@ -52,9 +51,6 @@ struct coreinfo_module *firmware_modules[] = {
#if IS_ENABLED(CONFIG_MODULE_BOOTLOG)
&bootlog_module,
#endif
-#if IS_ENABLED(CONFIG_MODULE_LAR)
- &lar_module,
-#endif
#if IS_ENABLED(CONFIG_MODULE_CBFS)
&cbfs_module,
#endif