summaryrefslogtreecommitdiffstats
path: root/src/soc/mediatek/common
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2022-01-12 17:45:29 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-03-27 15:32:51 +0000
commit879d04bf53c3cb35002c36fbaeb536a62f87ceab (patch)
tree7c6e7fbf47e8faf8696987a38c3d5039379d7123 /src/soc/mediatek/common
parent8078e900d16a7f2665c7dc02f04915c711156798 (diff)
downloadcoreboot-879d04bf53c3cb35002c36fbaeb536a62f87ceab.tar.gz
coreboot-879d04bf53c3cb35002c36fbaeb536a62f87ceab.tar.bz2
coreboot-879d04bf53c3cb35002c36fbaeb536a62f87ceab.zip
soc/mediatek: Include 'console/console.h' when appropriate
Found using: diff <(git grep -l '#include <console/console.h>' -- src/) <(git grep -l 'console_time_report\|console_time_get_and_reset\|do_putchar\|vprintk\|printk\|console_log_level\|console_init\|get_log_level\|CONSOLE_ENABLE\|get_console_loglevel\|die_notify\|die_with_post_code\|die\|arch_post_code\|mainboard_post\|post_code\|RAM_SPEW\|RAM_DEBUG\|BIOS_EMERG\|BIOS_ALERT\|BIOS_CRIT\|BIOS_ERR\|BIOS_WARNING\|BIOS_NOTICE\|BIOS_INFO\|BIOS_DEBUG\|BIOS_SPEW\|BIOS_NEVER' -- src/) Change-Id: I93f930de5a2a477ec4c0d8e5c8c57b25f5e4252c Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61043 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Hung-Te Lin <hungte@chromium.org> Reviewed-by: Xixi Chen <xixi.chen@mediatek.corp-partner.google.com>
Diffstat (limited to 'src/soc/mediatek/common')
-rw-r--r--src/soc/mediatek/common/include/soc/msdc.h1
-rw-r--r--src/soc/mediatek/common/msdc.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/mediatek/common/include/soc/msdc.h b/src/soc/mediatek/common/include/soc/msdc.h
index 798b0f61fea1..0f8ba7ad4645 100644
--- a/src/soc/mediatek/common/include/soc/msdc.h
+++ b/src/soc/mediatek/common/include/soc/msdc.h
@@ -4,6 +4,7 @@
#define SOC_MEDIATEK_COMMON_MSDC_H
#include <commonlib/sd_mmc_ctrlr.h>
+#include <console/console.h>
/*------------------------------*/
/* Register Offset */
diff --git a/src/soc/mediatek/common/msdc.c b/src/soc/mediatek/common/msdc.c
index a5a8a6bbd953..8208886c206d 100644
--- a/src/soc/mediatek/common/msdc.c
+++ b/src/soc/mediatek/common/msdc.c
@@ -6,6 +6,7 @@
#include <cbmem.h>
#include <commonlib/bsd/helpers.h>
#include <commonlib/storage/sd_mmc.h>
+#include <console/console.h>
#include <delay.h>
#include <device/mmio.h>
#include <lib.h>