diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-11-17 15:29:07 +0100 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-11-19 00:39:54 +0000 |
commit | 1e0ce7a9d8d67e83c67e22dd51d5b8e8f6e7cb8d (patch) | |
tree | a0222c3c511c19ac4b6df12d93907073baa47fb0 /src/soc | |
parent | 3a7102d628a5af3531d640d7121dd0eebd47b7cd (diff) |
soc/qualcomm/sc7280/socinfo: Add missing <console/console.h>
This to fix Wimplicit-function-declaration error:
src/soc/qualcomm/sc7280/socinfo.c:67:2: error: call to undeclared function 'die'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
67 | die("could not match jtagid\n");
| ^
src/soc/qualcomm/sc7280/socinfo.c:81:2: error: call to undeclared function 'die'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
81 | die("could not match jtagid\n");
| ^
Change-Id: If930e39d0c7231975c1a11179fa7dbd9fcc0d1d1
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85166
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/qualcomm/sc7280/socinfo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7280/socinfo.c b/src/soc/qualcomm/sc7280/socinfo.c index af6901eab0..63e5b93311 100644 --- a/src/soc/qualcomm/sc7280/socinfo.c +++ b/src/soc/qualcomm/sc7280/socinfo.c @@ -2,6 +2,7 @@ #include <assert.h> #include <commonlib/helpers.h> +#include <console/console.h> #include <device/mmio.h> #include <types.h> #include <soc/socinfo.h> |