File tree Expand file tree Collapse file tree 5 files changed +394
-4
lines changed Expand file tree Collapse file tree 5 files changed +394
-4
lines changed Original file line number Diff line number Diff line change @@ -330,9 +330,6 @@ config COMMON_CLK_PXA
330
330
help
331
331
Support for the Marvell PXA SoC.
332
332
333
- config COMMON_CLK_PIC32
334
- def_bool COMMON_CLK && MACH_PIC32
335
-
336
333
config COMMON_CLK_OXNAS
337
334
bool "Clock driver for the OXNAS SoC Family"
338
335
depends on ARCH_OXNAS || COMPILE_TEST
@@ -407,6 +404,7 @@ source "drivers/clk/keystone/Kconfig"
407
404
source "drivers/clk/mediatek/Kconfig"
408
405
source "drivers/clk/meson/Kconfig"
409
406
source "drivers/clk/mstar/Kconfig"
407
+ source "drivers/clk/microchip/Kconfig"
410
408
source "drivers/clk/mvebu/Kconfig"
411
409
source "drivers/clk/pistachio/Kconfig"
412
410
source "drivers/clk/qcom/Kconfig"
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ obj-$(CONFIG_ARCH_KEYSTONE) += keystone/
91
91
obj-$(CONFIG_MACH_LOONGSON32) += loongson1/
92
92
obj-y += mediatek/
93
93
obj-$(CONFIG_ARCH_MESON) += meson/
94
- obj-$(CONFIG_MACH_PIC32) += microchip/
94
+ obj-y += microchip/
95
95
ifeq ($(CONFIG_COMMON_CLK ) , y)
96
96
obj-$(CONFIG_ARCH_MMP) += mmp/
97
97
endif
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: GPL-2.0
2
+
3
+ config COMMON_CLK_PIC32
4
+ def_bool COMMON_CLK && MACH_PIC32
5
+
6
+ config MCHP_CLK_MPFS
7
+ bool "Clk driver for PolarFire SoC"
8
+ depends on (RISCV && SOC_MICROCHIP_POLARFIRE) || COMPILE_TEST
9
+ help
10
+ Supports Clock Configuration for PolarFire SoC
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: GPL-2.0-only
2
2
obj-$(CONFIG_COMMON_CLK_PIC32) += clk-core.o
3
3
obj-$(CONFIG_PIC32MZDA) += clk-pic32mzda.o
4
+ obj-$(CONFIG_MCHP_CLK_MPFS) += clk-mpfs.o
You can’t perform that action at this time.
0 commit comments