diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2015-08-28 19:23:29 -0400 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2015-08-29 03:02:11 +0000 |
commit | 1dbbe828d49b33711bcfa6ab7e81a0b0ceea613c (patch) | |
tree | 0c551ccc5bf17663733e1dab27e45f0f19b195ca | |
parent | 41c003ca6db4a4537659ff59a1671d80a7d6e47c (diff) | |
download | coreboot-1dbbe828d49b33711bcfa6ab7e81a0b0ceea613c.tar.xz |
drivers/intel/fsp1_1: Don't compile GOP support in romstage
We don't need the code in romstage, and it saves us a few #ifdefs.
Change-Id: I26d867566f07c7d80890cd01bf055be7497130d3
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-on: http://review.coreboot.org/11457
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r-- | src/drivers/intel/fsp1_1/Makefile.inc | 1 | ||||
-rw-r--r-- | src/drivers/intel/fsp1_1/fsp_gop.c | 2 | ||||
-rw-r--r-- | src/drivers/intel/fsp1_1/fsp_gop.h | 3 |
3 files changed, 1 insertions, 5 deletions
diff --git a/src/drivers/intel/fsp1_1/Makefile.inc b/src/drivers/intel/fsp1_1/Makefile.inc index 05dbfe584f..f831f9d696 100644 --- a/src/drivers/intel/fsp1_1/Makefile.inc +++ b/src/drivers/intel/fsp1_1/Makefile.inc @@ -18,7 +18,6 @@ # Foundation, Inc. # -romstage-$(CONFIG_GOP_SUPPORT) += fsp_gop.c romstage-y += fsp_util.c romstage-y += hob.c diff --git a/src/drivers/intel/fsp1_1/fsp_gop.c b/src/drivers/intel/fsp1_1/fsp_gop.c index 32a176f398..ed1f1b4057 100644 --- a/src/drivers/intel/fsp1_1/fsp_gop.c +++ b/src/drivers/intel/fsp1_1/fsp_gop.c @@ -61,7 +61,6 @@ const optionrom_vbt_t *fsp_get_vbt(uint32_t *vbt_len) return vbt.data; } -#if ENV_RAMSTAGE void fsp_gop_framebuffer(struct lb_header *header) { struct lb_framebuffer *framebuffer; @@ -98,4 +97,3 @@ void fsp_gop_framebuffer(struct lb_header *header) framebuffer->tag = LB_TAG_FRAMEBUFFER; framebuffer->size = sizeof(*framebuffer); } -#endif /* ENV_RAMSTAGE */ diff --git a/src/drivers/intel/fsp1_1/fsp_gop.h b/src/drivers/intel/fsp1_1/fsp_gop.h index fc259014e3..2999369e2f 100644 --- a/src/drivers/intel/fsp1_1/fsp_gop.h +++ b/src/drivers/intel/fsp1_1/fsp_gop.h @@ -27,8 +27,7 @@ #include <soc/intel/common/gma.h> const optionrom_vbt_t *fsp_get_vbt(uint32_t *vbt_len); -#if ENV_RAMSTAGE void fsp_gop_framebuffer(struct lb_header *header); -#endif /* ENV_RAMSTAGE */ + #endif /* CONFIG_GOP_SUPPORT */ #endif /* _FSP_GOP_H_ */ |