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 --- nicnatsemi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nicnatsemi.c') diff --git a/nicnatsemi.c b/nicnatsemi.c index 085768d6..77b54407 100644 --- a/nicnatsemi.c +++ b/nicnatsemi.c @@ -71,7 +71,7 @@ int nicnatsemi_init(void) * functions below wants to be 0x0000FFFF. */ max_rom_decode.parallel = 131072; - register_par_master(&par_master_nicnatsemi, BUS_PARALLEL); + register_par_master(&par_master_nicnatsemi, BUS_PARALLEL, NULL); return 0; } -- cgit v1.2.3