diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-05-27 11:20:07 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2024-05-29 10:33:54 +0000 |
commit | bdd03c20d5b1cd7ca17e2559a44ddcf1da06f3be (patch) | |
tree | 3efad8a2559fba312165272eb2abdb7b72b146db /src/vendorcode | |
parent | 93ca6b676cd0ac4c3755bb69cf690dc23a28b22a (diff) |
tree: Use <stdio.h> for snprintf
<stdio.h> header is used for input/output operations (such as printf,
scanf, fopen, etc.). Although some input/output functions can manipulate
strings, they do not need to directly include <string.h> because they
are declared independently.
Change-Id: Ibe2a4ff6f68843a6d99cfdfe182cf2dd922802aa
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82665
Reviewed-by: Yidi Lin <yidilin@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/vendorcode')
7 files changed, 7 insertions, 0 deletions
diff --git a/src/vendorcode/amd/opensil/genoa_poc/ramstage.c b/src/vendorcode/amd/opensil/genoa_poc/ramstage.c index 758b2841fd..843f073a36 100644 --- a/src/vendorcode/amd/opensil/genoa_poc/ramstage.c +++ b/src/vendorcode/amd/opensil/genoa_poc/ramstage.c @@ -9,6 +9,7 @@ #include <cpu/cpu.h> #include <device/device.h> #include <soc/soc_chip.h> +#include <stdio.h> #include <xSIM-api.h> #include "opensil_console.h" #include "opensil.h" diff --git a/src/vendorcode/cavium/bdk/libbdk-dram/bdk-dram-config.c b/src/vendorcode/cavium/bdk/libbdk-dram/bdk-dram-config.c index 1cf01a26e0..a2a0b6274a 100644 --- a/src/vendorcode/cavium/bdk/libbdk-dram/bdk-dram-config.c +++ b/src/vendorcode/cavium/bdk/libbdk-dram/bdk-dram-config.c @@ -37,6 +37,7 @@ * ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU. ***********************license end**************************************/ #include <bdk.h> +#include <stdio.h> #include <string.h> #include <libbdk-hal/bdk-config.h> #include <libbdk-hal/bdk-l2c.h> diff --git a/src/vendorcode/cavium/bdk/libbdk-dram/bdk-dram-test.c b/src/vendorcode/cavium/bdk/libbdk-dram/bdk-dram-test.c index fdca040cb3..0d6bd8643e 100644 --- a/src/vendorcode/cavium/bdk/libbdk-dram/bdk-dram-test.c +++ b/src/vendorcode/cavium/bdk/libbdk-dram/bdk-dram-test.c @@ -48,6 +48,7 @@ #include <libbdk-hal/bdk-utils.h> #include <libbdk-os/bdk-init.h> #include <libbdk-os/bdk-thread.h> +#include <stdio.h> /* This code is an optional part of the BDK. It is only linked in if BDK_REQUIRE() needs it */ diff --git a/src/vendorcode/cavium/bdk/libbdk-hal/bdk-config.c b/src/vendorcode/cavium/bdk/libbdk-hal/bdk-config.c index eec44434a5..b0573531c0 100644 --- a/src/vendorcode/cavium/bdk/libbdk-hal/bdk-config.c +++ b/src/vendorcode/cavium/bdk/libbdk-hal/bdk-config.c @@ -14,6 +14,7 @@ #include <string.h> #include <assert.h> #include <lame_string.h> +#include <stdio.h> static struct bdk_devicetree_key_value *config_fdt; diff --git a/src/vendorcode/cavium/bdk/libbdk-hal/device/bdk-device.c b/src/vendorcode/cavium/bdk/libbdk-hal/device/bdk-device.c index 21e43a4326..a099345084 100644 --- a/src/vendorcode/cavium/bdk/libbdk-hal/device/bdk-device.c +++ b/src/vendorcode/cavium/bdk/libbdk-hal/device/bdk-device.c @@ -38,6 +38,7 @@ ***********************license end**************************************/ #include <bdk.h> #include <stdlib.h> +#include <stdio.h> #include <string.h> #include "libbdk-arch/bdk-csrs-ap.h" #include "libbdk-arch/bdk-csrs-pccpf.h" diff --git a/src/vendorcode/cavium/bdk/libdram/dram-init-ddr3.c b/src/vendorcode/cavium/bdk/libdram/dram-init-ddr3.c index 12d49d8378..ec785dd529 100644 --- a/src/vendorcode/cavium/bdk/libdram/dram-init-ddr3.c +++ b/src/vendorcode/cavium/bdk/libdram/dram-init-ddr3.c @@ -43,6 +43,7 @@ #include "dram-internal.h" #include <stdlib.h> +#include <stdio.h> #include <string.h> #include <libbdk-hal/bdk-config.h> #include <libbdk-hal/bdk-l2c.h> diff --git a/src/vendorcode/google/smbios.c b/src/vendorcode/google/smbios.c index 938a8f1c75..2bcd8dbc64 100644 --- a/src/vendorcode/google/smbios.c +++ b/src/vendorcode/google/smbios.c @@ -2,6 +2,7 @@ #include <boardid.h> #include <smbios.h> +#include <stdio.h> #include <string.h> const char *smbios_mainboard_version(void) |