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/arch | |
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/arch')
-rw-r--r-- | src/arch/arm64/smbios.c | 1 | ||||
-rw-r--r-- | src/arch/x86/smbios.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/arm64/smbios.c b/src/arch/arm64/smbios.c index 291659a4bc..8042057e07 100644 --- a/src/arch/arm64/smbios.c +++ b/src/arch/arm64/smbios.c @@ -5,6 +5,7 @@ #include <arch/smc.h> #include <console/console.h> #include <smbios.h> +#include <stdio.h> #include <string.h> static void smbios_processor_id(u32 *processor_id) diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c index 0338b60d1b..f42de71fc7 100644 --- a/src/arch/x86/smbios.c +++ b/src/arch/x86/smbios.c @@ -5,6 +5,7 @@ #include <console/console.h> #include <arch/cpu.h> #include <cpu/x86/name.h> +#include <stdio.h> static int smbios_cpu_vendor(u8 *start) { |