mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
52b61c944c
The patch moves the clk-ti-sci.c file to the 'ti' directory along with all the other TI's drivers, and renames it clk-sci.c. Signed-off-by: Dario Binacchi <dariobin@libero.it>
13 lines
416 B
Makefile
13 lines
416 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2020 Dario Binacchi <dariobin@libero.it>
|
|
#
|
|
|
|
obj-$(CONFIG_ARCH_OMAP2PLUS) += clk.o omap4-cm.o
|
|
|
|
obj-$(CONFIG_CLK_TI_AM3_DPLL) += clk-am3-dpll.o clk-am3-dpll-x2.o
|
|
obj-$(CONFIG_CLK_TI_CTRL) += clk-ctrl.o
|
|
obj-$(CONFIG_CLK_TI_DIVIDER) += clk-divider.o
|
|
obj-$(CONFIG_CLK_TI_GATE) += clk-gate.o
|
|
obj-$(CONFIG_CLK_TI_MUX) += clk-mux.o
|
|
obj-$(CONFIG_CLK_TI_SCI) += clk-sci.o
|