mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-27 06:50:37 +00:00

This SoC has some leftover code all over the kernel but no boards are supported anymore. Remove support for da830 from the davinci clock driver. With it: remove the ifdefs around the data structures as the da850 remains the only davinci SoC supported and the only user of this driver. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Link: https://lore.kernel.org/r/20250304133423.100884-1-brgl@bgdev.pl Acked-by: David Lechner <david@lechnology.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
12 lines
253 B
Makefile
12 lines
253 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ifeq ($(CONFIG_COMMON_CLK), y)
|
|
obj-$(CONFIG_ARCH_DAVINCI_DA8XX) += da8xx-cfgchip.o
|
|
|
|
obj-y += pll.o
|
|
obj-$(CONFIG_ARCH_DAVINCI_DA850) += pll-da850.o
|
|
|
|
obj-y += psc.o
|
|
obj-$(CONFIG_ARCH_DAVINCI_DA850) += psc-da850.o
|
|
endif
|