diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-09-19 09:40:52 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2020-11-17 09:50:24 +0000 |
commit | 6aaf7db7195659fd2484d60a457275c7eb4b14c7 (patch) | |
tree | c339cbbbe6e2f3d55e710c0f98bad520590f7c7f /src/soc/qualcomm | |
parent | 27718ac87f9dd117fa047f7292d7014ecb1e96a9 (diff) |
src: Add missing 'include <console/console.h>'
"Die()" needs <console/console.h>.
Change-Id: I250988d77b0b0a093a1d116bea44a0cbb84189dd
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45540
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/qualcomm')
-rw-r--r-- | src/soc/qualcomm/sc7180/qupv3_config.c | 1 | ||||
-rw-r--r-- | src/soc/qualcomm/sc7180/qupv3_i2c.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7180/qupv3_config.c b/src/soc/qualcomm/sc7180/qupv3_config.c index 342ee1f7fa..8cd9670f87 100644 --- a/src/soc/qualcomm/sc7180/qupv3_config.c +++ b/src/soc/qualcomm/sc7180/qupv3_config.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <cbfs.h> +#include <console/console.h> #include <string.h> #include <soc/qupv3_config.h> diff --git a/src/soc/qualcomm/sc7180/qupv3_i2c.c b/src/soc/qualcomm/sc7180/qupv3_i2c.c index b80c3dfcbb..c9adba4fbf 100644 --- a/src/soc/qualcomm/sc7180/qupv3_i2c.c +++ b/src/soc/qualcomm/sc7180/qupv3_i2c.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <assert.h> +#include <console/console.h> #include <device/i2c_simple.h> #include <gpio.h> #include <inttypes.h> |