mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
58e1af972f
The patch adds support for TI gate clock binding. The code is based on the drivers/clk/ti/gate.c driver of the Linux kernel version 5.9-rc7. For DT binding details see: - Documentation/devicetree/bindings/clock/ti/gate.txt Signed-off-by: Dario Binacchi <dariobin@libero.it>
11 lines
327 B
Makefile
11 lines
327 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2020 Dario Binacchi <dariobin@libero.it>
|
|
#
|
|
|
|
obj-$(CONFIG_ARCH_OMAP2PLUS) += clk.o
|
|
|
|
obj-$(CONFIG_CLK_TI_AM3_DPLL) += clk-am3-dpll.o clk-am3-dpll-x2.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
|