Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/54379 )
Change subject: mb/asus/h61m-series/mainboard.c: Remove temporary guard ......................................................................
mb/asus/h61m-series/mainboard.c: Remove temporary guard
This guard was only added to preserve reproducibility when unifying the boards, but is not necessary. The `install_intel_vga_int15_handler` function does nothing when `VGA_ROM_RUN` is not selected.
Change-Id: If51a0ab1c57b0856018a62cf669e5d1b53e5333c Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/mainboard/asus/h61-series/mainboard.c 1 file changed, 0 insertions(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/79/54379/1
diff --git a/src/mainboard/asus/h61-series/mainboard.c b/src/mainboard/asus/h61-series/mainboard.c index 48fcdce..c834fea 100644 --- a/src/mainboard/asus/h61-series/mainboard.c +++ b/src/mainboard/asus/h61-series/mainboard.c @@ -1,8 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */
-/* TODO: remove */ -#if CONFIG(INTEL_INT15) - #include <device/device.h> #include <drivers/intel/gma/int15.h>
@@ -16,5 +13,3 @@ struct chip_operations mainboard_ops = { .enable_dev = mainboard_enable, }; - -#endif