From 43026ba81966a9f065435a68a6ca8bd69005fe19 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Fri, 19 Feb 2021 21:57:31 +0100 Subject: soc/intel/cannonlake: Drop unnecessary guard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The MRC cache driver assumes BOOT_DEVICE_MEMORY_MAPPED=y already. This is to ease factoring out common code across seven Intel platforms. Change-Id: I0598cb18b456e10789b2a42792fbfa2639cdd2c4 Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/50951 Reviewed-by: Michael Niewöhner Tested-by: build bot (Jenkins) --- src/soc/intel/cannonlake/bootblock/cpu.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/soc') diff --git a/src/soc/intel/cannonlake/bootblock/cpu.c b/src/soc/intel/cannonlake/bootblock/cpu.c index 5a56d29b43..30c1a412ea 100644 --- a/src/soc/intel/cannonlake/bootblock/cpu.c +++ b/src/soc/intel/cannonlake/bootblock/cpu.c @@ -6,7 +6,5 @@ void bootblock_cpu_init(void) { /* Temporarily cache the memory-mapped boot media. */ - if (CONFIG(BOOT_DEVICE_MEMORY_MAPPED) && - CONFIG(BOOT_DEVICE_SPI_FLASH)) - fast_spi_cache_bios_region(); + fast_spi_cache_bios_region(); } -- cgit v1.2.3