mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-01 12:02:28 +02:00
Add clock driver for MediaTek MT8516 SoC. Signed-off-by: Fabien Parent <fparent@baylibre.com> Acked-by: Ryder Lee <ryder.lee@mediatek.com> [trini: Redo whitespace] Signed-off-by: Tom Rini <trini@konsulko.com>
9 lines
230 B
Makefile
9 lines
230 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Core
|
|
obj-$(CONFIG_ARCH_MEDIATEK) += clk-mtk.o
|
|
|
|
# SoC Drivers
|
|
obj-$(CONFIG_TARGET_MT7623) += clk-mt7623.o
|
|
obj-$(CONFIG_TARGET_MT7629) += clk-mt7629.o
|
|
obj-$(CONFIG_TARGET_MT8516) += clk-mt8516.o
|