diff options
author | Felix Singer <felixsinger@posteo.net> | 2024-11-21 12:14:37 +0100 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2024-11-21 12:25:19 +0000 |
commit | 8bbcc0eb1e97f445b141591f42b2e1736cc81324 (patch) | |
tree | 5036009f33e9456b3c27645752a2af908e82e85d | |
parent | 9a769a86d08ffefe9c18ffd662a3839e54b0d9d6 (diff) |
nb/via/cx700/romstage: Include missing static.h header
Commit 755ecc259c42 ("nb/via/cx700: Implement raminit") is missing an
include for static.h and breaks the main branch. Fix it.
Change-Id: I836ab03b4eba6f32a2ae576eafc465543179cd05
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85232
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r-- | src/northbridge/via/cx700/romstage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/northbridge/via/cx700/romstage.c b/src/northbridge/via/cx700/romstage.c index b73dd91b46..d554b7656f 100644 --- a/src/northbridge/via/cx700/romstage.c +++ b/src/northbridge/via/cx700/romstage.c @@ -8,6 +8,7 @@ #include <static_devices.h> #include <arch/romstage.h> #include <cbmem.h> +#include <static.h> #include "chip.h" #include "raminit.h" |