summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--futility/updater_dut.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/futility/updater_dut.c b/futility/updater_dut.c
index 689dd227..8789f89b 100644
--- a/futility/updater_dut.c
+++ b/futility/updater_dut.c
@@ -99,7 +99,8 @@ static int dut_get_platform_version(struct updater_config *cfg)
/* Helper function to return host software write protection status. */
static int dut_get_wp_sw(struct updater_config *cfg)
{
- return flashrom_get_wp(PROG_HOST, -1);
+ assert(cfg->image.programmer);
+ return flashrom_get_wp(cfg->image.programmer, -1);
}
/* Helper functions to use or configure the DUT properties. */