diff options
author | Nico Huber <nico.h@gmx.de> | 2018-06-06 17:40:02 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-06-12 18:07:51 +0000 |
commit | 29cc33181a18e76d033a4f8dc5d3bbd982ce4b9b (patch) | |
tree | be258ac1c387c0a9f0b90557a596591ae77bd383 /src/soc/intel/cannonlake/graphics.c | |
parent | 873b4e70bc4c829307864f6819490840e07b6660 (diff) | |
download | coreboot-29cc33181a18e76d033a4f8dc5d3bbd982ce4b9b.tar.xz |
drivers/intel/gma: Unify VBT related Kconfig names
Shuffle words and drop the _DATA_FILE suffix.
Change-Id: I0b0d50ea729e5580c0bc7b43f250ff387ce59cfc
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/26898
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/soc/intel/cannonlake/graphics.c')
-rw-r--r-- | src/soc/intel/cannonlake/graphics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/cannonlake/graphics.c b/src/soc/intel/cannonlake/graphics.c index 1487a31c9b..58f87f7474 100644 --- a/src/soc/intel/cannonlake/graphics.c +++ b/src/soc/intel/cannonlake/graphics.c @@ -46,14 +46,14 @@ void graphics_soc_init(struct device *dev) /* * GFX PEIM module inside FSP binary is taking care of graphics - * initialization based on INTEL_GMA_ADD_VBT_DATA_FILE Kconfig + * initialization based on INTEL_GMA_ADD_VBT Kconfig * option and input VBT file. Hence no need to load/execute legacy VGA * OpROM in order to initialize GFX. * * In case of non-FSP solution, SoC need to select VGA_ROM_RUN * Kconfig to perform GFX initialization through VGA OpRom. */ - if (IS_ENABLED(CONFIG_INTEL_GMA_ADD_VBT_DATA_FILE)) + if (IS_ENABLED(CONFIG_INTEL_GMA_ADD_VBT)) return; /* IGD needs to Bus Master */ |