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 --- nicrealtek.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nicrealtek.c') diff --git a/nicrealtek.c b/nicrealtek.c index 5454b63af..2208179c2 100644 --- a/nicrealtek.c +++ b/nicrealtek.c @@ -86,7 +86,7 @@ int nicrealtek_init(void) if (register_shutdown(nicrealtek_shutdown, NULL)) return 1; - register_par_master(&par_master_nicrealtek, BUS_PARALLEL); + register_par_master(&par_master_nicrealtek, BUS_PARALLEL, NULL); return 0; } -- cgit v1.2.3