Commit 51fa6aa5 authored by Duje Mihanović's avatar Duje Mihanović Committed by Stephen Boyd
Browse files

clk: pxa168: 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: default avatarDuje Mihanović <duje.mihanovic@skole.hr>
Link: https://lore.kernel.org/r/20230812-mmp-nr-clks-v2-2-f9271bd7eaa5@skole.hr


Acked-by: default avatarConor Dooley <conor.dooley@microchip.com>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 46c13513
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -62,6 +62,8 @@
#define APMU_EPD	0x104
#define MPMU_UART_PLL	0x14

#define NR_CLKS		200

struct pxa168_clk_unit {
	struct mmp_clk_unit unit;
	void __iomem *mpmu_base;
@@ -321,7 +323,7 @@ static void __init pxa168_clk_init(struct device_node *np)
		return;
	}

	mmp_clk_init(np, &pxa_unit->unit, PXA168_NR_CLKS);
	mmp_clk_init(np, &pxa_unit->unit, NR_CLKS);

	pxa168_pll_init(pxa_unit);

+0 −1
Original line number Diff line number Diff line
@@ -63,5 +63,4 @@
#define PXA168_CLK_SDH01_AXI		111
#define PXA168_CLK_SDH23_AXI		112

#define PXA168_NR_CLKS			200
#endif