diff --git a/src/bios/mtrr/mtrr.c b/src/bios/mtrr/mtrr.c
index 285d284..18d542b 100644
--- a/src/bios/mtrr/mtrr.c
+++ b/src/bios/mtrr/mtrr.c
@@ -505,20 +505,10 @@ static int mtrr_test3(fwts_framework *fw)
 	return FWTS_OK;
 }
 
-#if FWTS_TEST_VGA_REGION
-static int mtrr_test4(fwts_framework *fw)
-{
-	return check_vga_controller_address(fw);
-}
-#endif
-
 static fwts_framework_minor_test mtrr_tests[] = {
 	{ mtrr_test1, "Validate the kernel MTRR IOMEM setup." },
 	{ mtrr_test2, "Validate the MTRR setup across all processors." },
 	{ mtrr_test3, "Check for AMD MtrrFixDramModEn being cleared by the BIOS." },
-#if FWTS_TEST_VGA_REGION
-	{ mtrr_test4, "Validate the BIOS providided boot time MTRR IOMEM setup." },
-#endif
 	{ NULL, NULL }
 };
 
