diff options
author | Edward O'Callaghan <quasisec@google.com> | 2022-08-12 15:42:29 +1000 |
---|---|---|
committer | Anastasia Klimchuk <aklm@chromium.org> | 2022-09-07 02:57:20 +0000 |
commit | 162b997f2fb36d44640c6ca97baee328550c0869 (patch) | |
tree | 40d0503748987055f1d29c68e9c7464ef7570e79 /include | |
parent | a20ceffa352f790f14361211a1c9931475ec7ac7 (diff) | |
download | flashrom-162b997f2fb36d44640c6ca97baee328550c0869.tar.gz flashrom-162b997f2fb36d44640c6ca97baee328550c0869.tar.bz2 flashrom-162b997f2fb36d44640c6ca97baee328550c0869.zip |
tree: plumb programmer_cfg into chipset_flash_enable()
Change-Id: I963c674d212ce791ee155020fa97bcf26cefca0c
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66673
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 'include')
-rw-r--r-- | include/programmer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/programmer.h b/include/programmer.h index 2a4b1181..5331a12b 100644 --- a/include/programmer.h +++ b/include/programmer.h @@ -231,7 +231,7 @@ void board_handle_before_laptop(void); int board_flash_enable(const char *vendor, const char *model, const char *cb_vendor, const char *cb_model); /* chipset_enable.c */ -int chipset_flash_enable(void); +int chipset_flash_enable(const struct programmer_cfg *cfg); /* processor_enable.c */ int processor_flash_enable(void); |