summaryrefslogtreecommitdiffstats
path: root/programmer.h
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2021-05-11 17:38:14 +0200
committerNico Huber <nico.h@gmx.de>2021-05-13 14:37:29 +0000
commit7e4968525d37d87e8b6f8b848e4f2f9696926237 (patch)
treecefab4e871fc4e32e15772e131942c8fa5712a13 /programmer.h
parentc1173784781d81c5d601a65fbfc61d550d50f377 (diff)
downloadflashrom-7e4968525d37d87e8b6f8b848e4f2f9696926237.tar.gz
flashrom-7e4968525d37d87e8b6f8b848e4f2f9696926237.tar.bz2
flashrom-7e4968525d37d87e8b6f8b848e4f2f9696926237.zip
programmer: Smoothen register_spi_master() API
It was impossible to register a const struct spi_master that would point to dynamically allocated `data`. Fix that so that we won't have to create more mutable globals. Change-Id: I0c753b3db050fb87d4bbe2301a7ead854f28456f Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/54066 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'programmer.h')
-rw-r--r--programmer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/programmer.h b/programmer.h
index 675a2594e..1b0cdb979 100644
--- a/programmer.h
+++ b/programmer.h
@@ -643,7 +643,7 @@ int default_spi_send_multicommand(const struct flashctx *flash, struct spi_comma
int default_spi_read(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
int default_spi_write_256(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
int default_spi_write_aai(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
-int register_spi_master(const struct spi_master *mst);
+int register_spi_master(const struct spi_master *mst, void *data);
/* The following enum is needed by ich_descriptor_tool and ich* code as well as in chipset_enable.c. */
enum ich_chipset {