From 42b6346571e24bcdecee0ed282ff767a95844206 Mon Sep 17 00:00:00 2001 From: Aarya Chaumal Date: Mon, 1 May 2023 18:13:22 +0530 Subject: [PATCH] flashrom.c: Enable erase path optimisation Set the use_legacy_erase_path flag to false to enable erase path optimisation by default. Change-Id: Ie13e43b18b20dbb956b569e554953a19eb32ea22 Signed-off-by: Aarya Chaumal Reviewed-on: https://review.coreboot.org/c/flashrom/+/74872 Tested-by: build bot (Jenkins) Reviewed-by: Anastasia Klimchuk --- flashrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flashrom.c b/flashrom.c index faffe517e..19afb5446 100644 --- a/flashrom.c +++ b/flashrom.c @@ -35,7 +35,7 @@ #include "chipdrivers.h" #include "erasure_layout.h" -static bool use_legacy_erase_path = true; +static bool use_legacy_erase_path = false; const char flashrom_version[] = FLASHROM_VERSION;