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/acpi | |
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/acpi')
-rw-r--r-- | src/acpi/acpigen.c | 1 | ||||
-rw-r--r-- | src/acpi/acpigen_dptf.c | 1 | ||||
-rw-r--r-- | src/acpi/acpigen_usb.c | 1 | ||||
-rw-r--r-- | src/acpi/device.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/acpi/acpigen.c b/src/acpi/acpigen.c index 9c04e84cd0..4049df0dd6 100644 --- a/src/acpi/acpigen.c +++ b/src/acpi/acpigen.c @@ -14,6 +14,7 @@ #include <console/console.h> #include <device/device.h> #include <device/soundwire.h> +#include <stdio.h> #include <types.h> static char *gencurrent; diff --git a/src/acpi/acpigen_dptf.c b/src/acpi/acpigen_dptf.c index aa8de1e8d2..b28dcc6ec9 100644 --- a/src/acpi/acpigen_dptf.c +++ b/src/acpi/acpigen_dptf.c @@ -4,6 +4,7 @@ #include <acpi/acpigen_dptf.h> #include <stdbool.h> #include <stdint.h> +#include <stdio.h> /* Defaults */ #define DEFAULT_RAW_UNIT "ma" diff --git a/src/acpi/acpigen_usb.c b/src/acpi/acpigen_usb.c index 221a215f0d..c285360761 100644 --- a/src/acpi/acpigen_usb.c +++ b/src/acpi/acpigen_usb.c @@ -5,6 +5,7 @@ #include <acpi/acpigen.h> #include <acpi/acpigen_usb.h> #include <device/device.h> +#include <stdio.h> static const char *power_role_to_str(enum usb_typec_power_role power_role) { diff --git a/src/acpi/device.c b/src/acpi/device.c index 7313639afa..af3d262bc7 100644 --- a/src/acpi/device.c +++ b/src/acpi/device.c @@ -8,6 +8,7 @@ #include <acpi/acpigen_pci.h> #include <device/device.h> #include <stdlib.h> +#include <stdio.h> #include <types.h> #include <crc_byte.h> |