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/soc | |
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/soc')
-rw-r--r-- | src/soc/cavium/cn81xx/soc.c | 1 | ||||
-rw-r--r-- | src/soc/intel/common/block/acpi/cpu_hybrid.c | 1 | ||||
-rw-r--r-- | src/soc/intel/xeon_sp/acpi.c | 1 | ||||
-rw-r--r-- | src/soc/mediatek/common/display.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/cavium/cn81xx/soc.c b/src/soc/cavium/cn81xx/soc.c index 5e606d3d9e..81c9a648e5 100644 --- a/src/soc/cavium/cn81xx/soc.c +++ b/src/soc/cavium/cn81xx/soc.c @@ -13,6 +13,7 @@ #include <soc/uart.h> #include <stddef.h> #include <stdlib.h> +#include <stdio.h> #include <string.h> #include <symbols.h> #include <libbdk-boot/bdk-boot.h> diff --git a/src/soc/intel/common/block/acpi/cpu_hybrid.c b/src/soc/intel/common/block/acpi/cpu_hybrid.c index f52b68f7e2..68abba7eb8 100644 --- a/src/soc/intel/common/block/acpi/cpu_hybrid.c +++ b/src/soc/intel/common/block/acpi/cpu_hybrid.c @@ -9,6 +9,7 @@ #include <device/path.h> #include <intelblocks/acpi.h> #include <soc/cpu.h> +#include <stdio.h> #include <types.h> #define CPPC_NOM_FREQ_IDX 22 diff --git a/src/soc/intel/xeon_sp/acpi.c b/src/soc/intel/xeon_sp/acpi.c index 0d66aec282..1c493afc1c 100644 --- a/src/soc/intel/xeon_sp/acpi.c +++ b/src/soc/intel/xeon_sp/acpi.c @@ -6,6 +6,7 @@ #include <soc/pci_devs.h> #include <soc/util.h> #include <stdint.h> +#include <stdio.h> #include <stdlib.h> #include "chip.h" diff --git a/src/soc/mediatek/common/display.c b/src/soc/mediatek/common/display.c index 0dea58c74f..0c23e49249 100644 --- a/src/soc/mediatek/common/display.c +++ b/src/soc/mediatek/common/display.c @@ -10,6 +10,7 @@ #include <soc/dptx.h> #include <soc/dsi.h> #include <soc/mtcmos.h> +#include <stdio.h> #include <string.h> static struct panel_serializable_data *get_mipi_cmd_from_cbfs(struct panel_description *desc) |