mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-28 18:10:32 +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>
18 lines
470 B
C
18 lines
470 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Clock drivers for TI DaVinci PLL and PSC controllers
|
|
*
|
|
* Copyright (C) 2018 David Lechner <david@lechnology.com>
|
|
*/
|
|
|
|
#ifndef __LINUX_CLK_DAVINCI_PLL_H___
|
|
#define __LINUX_CLK_DAVINCI_PLL_H___
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/regmap.h>
|
|
|
|
/* function for registering clocks in early boot */
|
|
int da850_pll0_init(struct device *dev, void __iomem *base, struct regmap *cfgchip);
|
|
|
|
#endif /* __LINUX_CLK_DAVINCI_PLL_H___ */
|