aboutsummaryrefslogtreecommitdiff
path: root/drivers/clk
diff options
context:
space:
mode:
authorGravatar Duje Mihanović <duje.mihanovic@skole.hr> 2023-08-12 12:02:59 +0200
committerGravatar Stephen Boyd <sboyd@kernel.org> 2023-08-22 14:14:17 -0700
commit3b99cd274e43b89c89a4072c602b1df6000eb1f4 (patch)
tree0db578834d992fefa5299f3a36038eca9b8a06ed /drivers/clk
parentclk: pxa1928: Move number of clocks to driver source (diff)
downloadlinux-3b99cd274e43b89c89a4072c602b1df6000eb1f4.tar.gz
linux-3b99cd274e43b89c89a4072c602b1df6000eb1f4.tar.bz2
linux-3b99cd274e43b89c89a4072c602b1df6000eb1f4.zip
clk: pxa910: Move number of clocks to driver source
The number of clocks should not be in the dt binding as it is not used by the respective device tree and thus needlessly bloats the ABI. Move this number of clocks into the driver source. Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr> Link: https://lore.kernel.org/r/20230812-mmp-nr-clks-v2-4-f9271bd7eaa5@skole.hr Acked-by: Conor Dooley <conor.dooley@microchip.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/mmp/clk-of-pxa910.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/clk/mmp/clk-of-pxa910.c b/drivers/clk/mmp/clk-of-pxa910.c
index 4d15bac987eb..7a38c424782e 100644
--- a/drivers/clk/mmp/clk-of-pxa910.c
+++ b/drivers/clk/mmp/clk-of-pxa910.c
@@ -44,6 +44,8 @@
#define APMU_DFC 0x60
#define MPMU_UART_PLL 0x14
+#define NR_CLKS 200
+
struct pxa910_clk_unit {
struct mmp_clk_unit unit;
void __iomem *mpmu_base;
@@ -296,7 +298,7 @@ static void __init pxa910_clk_init(struct device_node *np)
goto unmap_apbc_region;
}
- mmp_clk_init(np, &pxa_unit->unit, PXA910_NR_CLKS);
+ mmp_clk_init(np, &pxa_unit->unit, NR_CLKS);
pxa910_pll_init(pxa_unit);