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/device | |
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/device')
-rw-r--r-- | src/device/device_util.c | 1 | ||||
-rw-r--r-- | src/device/pci_rom.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/device/device_util.c b/src/device/device_util.c index 5d620202ea..6a4577026c 100644 --- a/src/device/device_util.c +++ b/src/device/device_util.c @@ -4,6 +4,7 @@ #include <console/console.h> #include <device/device.h> #include <device/pci_def.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> #include <types.h> diff --git a/src/device/pci_rom.c b/src/device/pci_rom.c index 7679552c59..d60720eb49 100644 --- a/src/device/pci_rom.c +++ b/src/device/pci_rom.c @@ -6,6 +6,7 @@ #include <device/pci.h> #include <device/pci_ids.h> #include <device/pci_ops.h> +#include <stdio.h> #include <string.h> #include <cbfs.h> #include <cbmem.h> |