aboutsummaryrefslogtreecommitdiffstats
path: root/linux_mtd.c
diff options
context:
space:
mode:
authorAnastasia Klimchuk <aklm@chromium.org>2021-05-13 12:28:47 +1000
committerEdward O'Callaghan <quasisec@chromium.org>2021-05-23 04:18:54 +0000
commit9309bed2906440cfac1257135805fd82c5d8b7a8 (patch)
tree161cbae0a42155f150d6bb31cda696ad6a52dd8c /linux_mtd.c
parent6a5db26e686d32165621a6839843639192a33102 (diff)
downloadflashrom-9309bed2906440cfac1257135805fd82c5d8b7a8.tar.gz
flashrom-9309bed2906440cfac1257135805fd82c5d8b7a8.tar.bz2
flashrom-9309bed2906440cfac1257135805fd82c5d8b7a8.zip
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. BUG=b:185191942 TEST=builds Change-Id: Id3adb4cf04ae04dbe87ddb96f30871cb5f7c8ff0 Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/54170 Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'linux_mtd.c')
-rw-r--r--linux_mtd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux_mtd.c b/linux_mtd.c
index 0f7ac7e6..aeaecce2 100644
--- a/linux_mtd.c
+++ b/linux_mtd.c
@@ -424,7 +424,7 @@ int linux_mtd_init(void)
goto linux_mtd_init_exit;
}
- register_opaque_master(&programmer_linux_mtd);
+ register_opaque_master(&programmer_linux_mtd, NULL);
ret = 0;
linux_mtd_init_exit: