From 6a5db26e686d32165621a6839843639192a33102 Mon Sep 17 00:00:00 2001 From: Anastasia Klimchuk Date: Fri, 21 May 2021 09:40:58 +1000 Subject: programmer: Smoothen register_par_master API It was impossible to register a const struct par_master that would point to dynamically allocated `data`. Fix that so that we won't have to create more mutable globals. BUG=b:185191942 TEST=builds Change-Id: I95bc92f6c54c5bcdac1c522ca87054aaffed0f40 Signed-off-by: Anastasia Klimchuk Reviewed-on: https://review.coreboot.org/c/flashrom/+/54169 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan --- atahpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'atahpt.c') diff --git a/atahpt.c b/atahpt.c index dae02225..620e8946 100644 --- a/atahpt.c +++ b/atahpt.c @@ -75,7 +75,7 @@ int atahpt_init(void) reg32 |= (1 << 24); rpci_write_long(dev, REG_FLASH_ACCESS, reg32); - register_par_master(&par_master_atahpt, BUS_PARALLEL); + register_par_master(&par_master_atahpt, BUS_PARALLEL, NULL); return 0; } -- cgit v1.2.3