1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 14:33:18 +02:00

tree: Change signature of extract_programmer_param_str()

Results can be reproduced with the following invocation;
```
 $ find -name '*.c' -exec sed -i 's/extract_programmer_param_str(/extract_programmer_param_str(NULL, /g' '{}' \;
```

This allows for a pointer to the actual programmer parameters
to be passed instead of a global.

Change-Id: I781a328fa280e0a9601050dd99a75af72c39c899
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66654
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
This commit is contained in:
Edward O'Callaghan
2022-08-12 13:28:46 +10:00
committed by Anastasia Klimchuk
parent 33af2e695d
commit e316f1970d
32 changed files with 88 additions and 83 deletions

View File

@ -553,7 +553,7 @@ static int ni845x_spi_init(void)
int32 tmp = 0;
// read the cs parameter (which Chip select should we use)
CS_str = extract_programmer_param_str("cs");
CS_str = extract_programmer_param_str(NULL, "cs");
if (CS_str) {
CS_number = CS_str[0] - '0';
free(CS_str);
@ -563,7 +563,7 @@ static int ni845x_spi_init(void)
}
}
voltage = extract_programmer_param_str("voltage");
voltage = extract_programmer_param_str(NULL, "voltage");
if (voltage != NULL) {
requested_io_voltage_mV = parse_voltage(voltage);
free(voltage);
@ -571,9 +571,9 @@ static int ni845x_spi_init(void)
return 1;
}
serial_number = extract_programmer_param_str("serial");
serial_number = extract_programmer_param_str(NULL, "serial");
speed_str = extract_programmer_param_str("spispeed");
speed_str = extract_programmer_param_str(NULL, "spispeed");
if (speed_str) {
spi_speed_KHz = strtoul(speed_str, &endptr, 0);
if (*endptr) {
@ -586,7 +586,7 @@ static int ni845x_spi_init(void)
}
ignore_io_voltage_limits = false;
ignore_io_voltage_limits_str = extract_programmer_param_str("ignore_io_voltage_limits");
ignore_io_voltage_limits_str = extract_programmer_param_str(NULL, "ignore_io_voltage_limits");
if (ignore_io_voltage_limits_str
&& strcmp(ignore_io_voltage_limits_str, "yes") == 0) {
ignore_io_voltage_limits = true;