diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2022-01-07 22:16:07 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-27 15:32:18 +0000 |
commit | 8078e900d16a7f2665c7dc02f04915c711156798 (patch) | |
tree | 253d80184381efdba88fc367585b52194d13bdd3 | |
parent | 4f5f2e7a44cb77a81c28ab65c5538e3761b83889 (diff) |
src/soc/mediatek: Remove unused <console/console.h>
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/) |grep "<"
Change-Id: Ifc85ed8b5660eca11be50fddda0cf32aa1dd611c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60917
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Hung-Te Lin <hungte@chromium.org>
-rw-r--r-- | src/soc/mediatek/common/dram_init.c | 1 | ||||
-rw-r--r-- | src/soc/mediatek/mt8192/pmif_clk.c | 1 | ||||
-rw-r--r-- | src/soc/mediatek/mt8195/dp_intf.c | 1 | ||||
-rw-r--r-- | src/soc/mediatek/mt8195/pmif_clk.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/soc/mediatek/common/dram_init.c b/src/soc/mediatek/common/dram_init.c index cfcf84bda1..d94c3fc539 100644 --- a/src/soc/mediatek/common/dram_init.c +++ b/src/soc/mediatek/common/dram_init.c @@ -1,6 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <console/console.h> #include <stdint.h> #include <soc/dramc_common.h> #include <soc/dramc_param.h> diff --git a/src/soc/mediatek/mt8192/pmif_clk.c b/src/soc/mediatek/mt8192/pmif_clk.c index e5c0d1daf5..c814e81391 100644 --- a/src/soc/mediatek/mt8192/pmif_clk.c +++ b/src/soc/mediatek/mt8192/pmif_clk.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <commonlib/helpers.h> -#include <console/console.h> #include <delay.h> #include <device/mmio.h> #include <soc/infracfg.h> diff --git a/src/soc/mediatek/mt8195/dp_intf.c b/src/soc/mediatek/mt8195/dp_intf.c index aba7d7865c..69a7740392 100644 --- a/src/soc/mediatek/mt8195/dp_intf.c +++ b/src/soc/mediatek/mt8195/dp_intf.c @@ -1,6 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <console/console.h> #include <device/mmio.h> #include <edid.h> #include <soc/addressmap.h> diff --git a/src/soc/mediatek/mt8195/pmif_clk.c b/src/soc/mediatek/mt8195/pmif_clk.c index c6d65ced10..074657ef56 100644 --- a/src/soc/mediatek/mt8195/pmif_clk.c +++ b/src/soc/mediatek/mt8195/pmif_clk.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <commonlib/helpers.h> -#include <console/console.h> #include <delay.h> #include <device/mmio.h> #include <soc/infracfg.h> |