diff options
author | Bo-Chen Chen <rex-bc.chen@mediatek.com> | 2022-07-01 17:57:16 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-07-06 15:21:55 +0000 |
commit | 7912da87b1cf4098892ace1239ec8946656d5e81 (patch) | |
tree | a229521533c37757aea6aaa29fce6976d47c6dd4 /src/soc/mediatek | |
parent | e0541ec87439443fa9a09381d23a6ed4095f85a8 (diff) |
soc/mediatek/mt8188: Add timer support
Add timer drivers to Makefile.
TEST=build pass
BUG=b:233720142
Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com>
Change-Id: I0e3e58c7118a18e738a5abba391db0be9cfd7bf9
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65588
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Reviewed-by: Yidi Lin <yidilin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek')
-rw-r--r-- | src/soc/mediatek/mt8188/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/mediatek/mt8188/Makefile.inc b/src/soc/mediatek/mt8188/Makefile.inc index 2bef2e2596..81bdfb57ca 100644 --- a/src/soc/mediatek/mt8188/Makefile.inc +++ b/src/soc/mediatek/mt8188/Makefile.inc @@ -1,7 +1,7 @@ ifeq ($(CONFIG_SOC_MEDIATEK_MT8188),y) all-$(CONFIG_SPI_FLASH) += spi.c -all-y += ../common/timer.c +all-y += ../common/timer.c ../common/timer_prepare.c all-y += ../common/uart.c bootblock-y += bootblock.c |