diff options
author | Edward O'Callaghan <quasisec@google.com> | 2022-08-12 13:47:29 +1000 |
---|---|---|
committer | Anastasia Klimchuk <aklm@chromium.org> | 2022-09-07 01:56:58 +0000 |
commit | 5c710ea54afabf8c0e5f3c8ada45c4a5f9f0781b (patch) | |
tree | f320b3bb2deace62c899f5015dbe348321ad7aad /linux_mtd.c | |
parent | c3df94cb96dd0a6771926e2c6a1ed6309452de83 (diff) | |
download | flashrom-git-5c710ea54afabf8c0e5f3c8ada45c4a5f9f0781b.tar.gz |
tree: Port programmers to pass programmer_cfg to extractors
Ran;
```
$ find -name '*.c' -exec sed -i 's/extract_programmer_param_str(NULL/extract_programmer_param_str(cfg/g' '{}' \;
```
Manually fix i2c_helper_linux.c and other cases after.
Treat cases of;
- pcidev.c , and
- usb_device.c
as exceptional to be dealt with in later patches.
Change-Id: If7b7987e803d35582dda219652a6fc3ed5729b47
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66656
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'linux_mtd.c')
-rw-r--r-- | linux_mtd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux_mtd.c b/linux_mtd.c index ef908859..c5dc4511 100644 --- a/linux_mtd.c +++ b/linux_mtd.c @@ -500,7 +500,7 @@ static int linux_mtd_init(const struct programmer_cfg *cfg) int ret = 1; struct linux_mtd_data *data = NULL; - param_str = extract_programmer_param_str(NULL, "dev"); + param_str = extract_programmer_param_str(cfg, "dev"); if (param_str) { char *endptr; |