diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-05-27 10:31:19 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2024-05-28 03:22:34 +0000 |
commit | 94bfdd12821d0473e8bac1920342b0271a3771d5 (patch) | |
tree | 738d196da2b335441df2e2aa419d06694f8ce61f /src/soc | |
parent | 0554fc10c0dea70366992e56f4d344b528364f3a (diff) |
tree: Remove unused <stdarg.h>
<stdarg.h> header is used to define macros for handling variable
argument lists in functions like printf. It does not depend on the string
or memory manipulation functions provided by <string.h>.
So let follow conventions and include only the necessary headers in each
header file.
Change-Id: I07ffc65b7feefb8ec4ab8dd268113f9ed8d24685
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82664
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/amd/common/psp_verstage/psp_verstage.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/soc/amd/common/psp_verstage/psp_verstage.c b/src/soc/amd/common/psp_verstage/psp_verstage.c index e71d75ac32..54945b9236 100644 --- a/src/soc/amd/common/psp_verstage/psp_verstage.c +++ b/src/soc/amd/common/psp_verstage/psp_verstage.c @@ -21,7 +21,6 @@ #include <security/vboot/symbols.h> #include <security/vboot/vboot_common.h> #include <arch/stages.h> -#include <stdarg.h> #include <timestamp.h> extern char _bss_start, _bss_end; |