diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-09-19 09:32:36 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2020-11-17 09:01:14 +0000 |
commit | 27718ac87f9dd117fa047f7292d7014ecb1e96a9 (patch) | |
tree | aef8fe3daa00c42158bbf60722b2bcce7f8679e9 /src/mainboard/google/trogdor/mainboard.c | |
parent | add3a062687a94773711b3bbd57658b2038db0ce (diff) |
src: Add missing 'include <console/console.h>'
"printk()" needs <console/console.h>.
Change-Id: Iac6b7000bcd8b1335fa3a0ba462a63aed2dc85b8
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45539
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/mainboard/google/trogdor/mainboard.c')
-rw-r--r-- | src/mainboard/google/trogdor/mainboard.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/google/trogdor/mainboard.c b/src/mainboard/google/trogdor/mainboard.c index 57f3a3ba0f..54d8b0dd5c 100644 --- a/src/mainboard/google/trogdor/mainboard.c +++ b/src/mainboard/google/trogdor/mainboard.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <bootmode.h> +#include <console/console.h> #include <delay.h> #include <device/device.h> #include <device/i2c_simple.h> |