From 410f3b402a29af09070520bd13ea90e75ae2f5ec Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Thu, 14 Dec 2017 16:14:39 -0700 Subject: soc/intel/common/nvm: utilize spi_flash_ctrlr_protect_region() Now that there is spi flash controller flash protection use that API so the spi_flash_protect() API can be sunsetted since it was isolated within the Intel code base. BUG=b:69614064 Change-Id: I3908d0e3105b0ef9a0fbf4fc9426ac1be067f648 Signed-off-by: Aaron Durbn Reviewed-on: https://review.coreboot.org/22880 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh --- src/soc/intel/common/nvm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/soc/intel/common/nvm.c b/src/soc/intel/common/nvm.c index b7e0f4e7ac..61b7a65991 100644 --- a/src/soc/intel/common/nvm.c +++ b/src/soc/intel/common/nvm.c @@ -22,7 +22,6 @@ #include #include #include "nvm.h" -#include "spi_flash.h" /* Read flash status register to determine if write protect is active */ int nvm_is_write_protected(void) @@ -62,5 +61,5 @@ int nvm_protect(const struct region *r) if (!IS_ENABLED(CONFIG_BOOT_DEVICE_SPI_FLASH)) return 0; - return spi_flash_protect(region_offset(r), region_sz(r)); + return spi_flash_ctrlr_protect_region(boot_device_spi_flash(), r); } -- cgit v1.2.3