programmer: Smoothen register_opaque_master() API
It was impossible to register a const struct opaque_master that would
point to dynamically allocated `data`. Fix that so that we won't
have to create more mutable globals.
Change-Id: Id3adb4cf04ae04dbe87ddb96f30871cb5f7c8ff0
Signed-off-by: Anastasia Klimchuk <aklm@chromium.org>
Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/54170
Original-Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Original-Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/72202
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/ichspi.c b/ichspi.c
index 929dcc4..c76b708 100644
--- a/ichspi.c
+++ b/ichspi.c
@@ -2060,7 +2060,7 @@
}
hwseq_data.size_comp1 = tmpi;
- register_opaque_master(&opaque_master_ich_hwseq);
+ register_opaque_master(&opaque_master_ich_hwseq, NULL);
} else {
register_spi_master(&spi_master_ich9, NULL);
}