mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 06:01:16 +02:00
tree: Allow passing programmer_cfg directly to programmer
Modify the type signature of each programmer entry-point xxx_init() functions to allow for the consumption of the programmer parameterisation string data. ``` $ find -name '*.c' -exec sed -i 's/_init(void)/_init(const char *prog_param)/g' '{}' \; $ find -name '*.c' -exec sed -i 's/get_params(/get_params(const char *prog_param, /g' '{}' \; $ find -name '*.c' -exec sed -i 's/const char \*prog_param)/const struct programmer_cfg *cfg)/g' '{}' \; $ find -name '*.c' -exec sed -i 's/const char \*prog_param,/const struct programmer_cfg *cfg,/g' '{}' \; ``` and manually fix up any remaining parts. Change-Id: I8bab51a635b9d3a43e1619a7a32b334f4ce2cdd2 Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66655 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:

committed by
Anastasia Klimchuk

parent
e316f1970d
commit
1233e63833
@ -440,7 +440,7 @@ static const struct spi_master spi_master_parade_lspcon = {
|
||||
.probe_opcode = default_spi_probe_opcode,
|
||||
};
|
||||
|
||||
static int get_params(bool *allow_brick)
|
||||
static int get_params(const struct programmer_cfg *cfg, bool *allow_brick)
|
||||
{
|
||||
char *brick_str = NULL;
|
||||
int ret = 0;
|
||||
@ -460,11 +460,11 @@ static int get_params(bool *allow_brick)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int parade_lspcon_init(void)
|
||||
static int parade_lspcon_init(const struct programmer_cfg *cfg)
|
||||
{
|
||||
bool allow_brick;
|
||||
|
||||
if (get_params(&allow_brick))
|
||||
if (get_params(cfg, &allow_brick))
|
||||
return SPI_GENERIC_ERROR;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user