mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 22:43:17 +02:00
flashrom.c: flatten out read_buf_from_include_args()
read_buf_from_include_args() does not need the whole flashctx, rather it works with a fix layout and buffer. Just pass what state is actually required. BUG=b:242246291 TEST=builds Change-Id: Ieadd68895c7ba05cc3d770d304351b02622f14d7 Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66633 Reviewed-by: Evan Benn <evanbenn@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Nikolai Artemiev <nartemiev@google.com> Reviewed-by: Sam McNally <sammc@google.com> Reviewed-by: Thomas Heijligen <src@posteo.de>
This commit is contained in:

committed by
Edward O'Callaghan

parent
75b7455441
commit
ac7f0c20b8
@ -411,7 +411,7 @@ static int do_write(struct flashctx *const flash, const char *const filename, co
|
||||
* ... then update newcontents with contents from files provided to '-i'
|
||||
* args if needed.
|
||||
*/
|
||||
if (read_buf_from_include_args(flash, newcontents))
|
||||
if (read_buf_from_include_args(get_layout(flash), newcontents))
|
||||
goto _free_ret;
|
||||
|
||||
if (referencefile) {
|
||||
@ -445,7 +445,7 @@ static int do_verify(struct flashctx *const flash, const char *const filename)
|
||||
* ... then update newcontents with contents from files provided to '-i'
|
||||
* args if needed.
|
||||
*/
|
||||
if (read_buf_from_include_args(flash, newcontents))
|
||||
if (read_buf_from_include_args(get_layout(flash), newcontents))
|
||||
goto _free_ret;
|
||||
|
||||
ret = flashrom_image_verify(flash, newcontents, flash_size);
|
||||
|
Reference in New Issue
Block a user