mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 08:27:23 +00:00
b21e20b255
This commit intends to implement "fixed-clock" as in Linux. (drivers/clk/clk-fixed-rate.c in Linux) If you need a very simple clock to just provide fixed clock rate like a crystal oscillator, you do not have to write a new driver. This driver can support it. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Simon Glass <sjg@chromium.org>
11 lines
319 B
Makefile
11 lines
319 B
Makefile
#
|
|
# Copyright (c) 2015 Google, Inc
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_CLK) += clk-uclass.o clk_fixed_rate.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3036) += clk_rk3036.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3288) += clk_rk3288.o
|
|
obj-$(CONFIG_SANDBOX) += clk_sandbox.o
|