summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZheng Bao <fishbaozi@gmail.com>2021-11-04 17:47:07 +0800
committerPatrick Georgi <pgeorgi@google.com>2021-11-05 12:55:35 +0000
commitedd1e360f42859e5cb777470192ab1cfc3e2b82e (patch)
tree6df282c107b3f305f331dffef2ad914bb672f15c
parent33351336f84523d458e5a1c005c4ab119a82b52e (diff)
downloadcoreboot-edd1e360f42859e5cb777470192ab1cfc3e2b82e.tar.gz
coreboot-edd1e360f42859e5cb777470192ab1cfc3e2b82e.tar.bz2
coreboot-edd1e360f42859e5cb777470192ab1cfc3e2b82e.zip
amdfwtool: Fix the parameter point to NULL instead of integer
Change-Id: Iaeeec7a7e2de7847bfcefa5b7ff3f259f86533d4 Signed-off-by: Zheng Bao <fishbaozi@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/58941 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r--util/amdfwtool/amdfwtool.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c
index d0881792650a..395ce121b48f 100644
--- a/util/amdfwtool/amdfwtool.c
+++ b/util/amdfwtool/amdfwtool.c
@@ -1601,7 +1601,7 @@ int main(int argc, char **argv)
if (cb_config.multi_level) {
/* Do 2nd PSP directory followed by 1st */
psp_directory_table *pspdir2 = new_psp_dir(&ctx, cb_config.multi_level);
- integrate_psp_firmwares(&ctx, pspdir2, 0,
+ integrate_psp_firmwares(&ctx, pspdir2, NULL,
amd_psp_fw_table, PSPL2_COOKIE, &cb_config);
pspdir = new_psp_dir(&ctx, cb_config.multi_level);
@@ -1610,7 +1610,7 @@ int main(int argc, char **argv)
} else {
/* flat: PSP 1 cookie and no pointer to 2nd table */
pspdir = new_psp_dir(&ctx, cb_config.multi_level);
- integrate_psp_firmwares(&ctx, pspdir, 0,
+ integrate_psp_firmwares(&ctx, pspdir, NULL,
amd_psp_fw_table, PSP_COOKIE, &cb_config);
}
@@ -1637,7 +1637,7 @@ int main(int argc, char **argv)
/* Do 2nd level BIOS directory followed by 1st */
bios_directory_table *biosdir2 =
new_bios_dir(&ctx, cb_config.multi_level);
- integrate_bios_firmwares(&ctx, biosdir2, 0,
+ integrate_bios_firmwares(&ctx, biosdir2, NULL,
amd_bios_table, BDT2_COOKIE, &cb_config);
biosdir = new_bios_dir(&ctx, cb_config.multi_level);
@@ -1646,7 +1646,7 @@ int main(int argc, char **argv)
} else {
/* flat: BDT1 cookie and no pointer to 2nd table */
biosdir = new_bios_dir(&ctx, cb_config.multi_level);
- integrate_bios_firmwares(&ctx, biosdir, 0,
+ integrate_bios_firmwares(&ctx, biosdir, NULL,
amd_bios_table, BDT1_COOKIE, &cb_config);
}
switch (soc_id) {