Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85232?usp=email )
Change subject: nb/via/cx700/romstage: Include missing static.h header ......................................................................
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 --- M src/northbridge/via/cx700/romstage.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/32/85232/1
diff --git a/src/northbridge/via/cx700/romstage.c b/src/northbridge/via/cx700/romstage.c index b73dd91..d554b76 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"