File tree Expand file tree Collapse file tree 5 files changed +12
-8
lines changed Expand file tree Collapse file tree 5 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -232,13 +232,6 @@ config RESET_SOCFPGA
232
232
This enables the reset driver for the SoCFPGA ARMv7 platforms. This
233
233
driver gets initialized early during platform init calls.
234
234
235
- config RESET_STARFIVE_JH7100
236
- bool "StarFive JH7100 Reset Driver"
237
- depends on ARCH_STARFIVE || COMPILE_TEST
238
- default ARCH_STARFIVE
239
- help
240
- This enables the reset controller driver for the StarFive JH7100 SoC.
241
-
242
235
config RESET_SUNPLUS
243
236
bool "Sunplus SoCs Reset Driver" if COMPILE_TEST
244
237
default ARCH_SUNPLUS
@@ -320,6 +313,7 @@ config RESET_ZYNQ
320
313
help
321
314
This enables the reset controller driver for Xilinx Zynq SoCs.
322
315
316
+ source "drivers/reset/starfive/Kconfig"
323
317
source "drivers/reset/sti/Kconfig"
324
318
source "drivers/reset/hisilicon/Kconfig"
325
319
source "drivers/reset/tegra/Kconfig"
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: GPL-2.0
2
2
obj-y += core.o
3
3
obj-y += hisilicon/
4
+ obj-y += starfive/
4
5
obj-$(CONFIG_ARCH_STI) += sti/
5
6
obj-$(CONFIG_ARCH_TEGRA) += tegra/
6
7
obj-$(CONFIG_RESET_A10SR) += reset-a10sr.o
@@ -30,7 +31,6 @@ obj-$(CONFIG_RESET_RZG2L_USBPHY_CTRL) += reset-rzg2l-usbphy-ctrl.o
30
31
obj-$(CONFIG_RESET_SCMI) += reset-scmi.o
31
32
obj-$(CONFIG_RESET_SIMPLE) += reset-simple.o
32
33
obj-$(CONFIG_RESET_SOCFPGA) += reset-socfpga.o
33
- obj-$(CONFIG_RESET_STARFIVE_JH7100) += reset-starfive-jh7100.o
34
34
obj-$(CONFIG_RESET_SUNPLUS) += reset-sunplus.o
35
35
obj-$(CONFIG_RESET_SUNXI) += reset-sunxi.o
36
36
obj-$(CONFIG_RESET_TI_SCI) += reset-ti-sci.o
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: GPL-2.0-only
2
+
3
+ config RESET_STARFIVE_JH7100
4
+ bool "StarFive JH7100 Reset Driver"
5
+ depends on ARCH_STARFIVE || COMPILE_TEST
6
+ default ARCH_STARFIVE
7
+ help
8
+ This enables the reset controller driver for the StarFive JH7100 SoC.
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: GPL-2.0
2
+ obj-$(CONFIG_RESET_STARFIVE_JH7100) += reset-starfive-jh7100.o
File renamed without changes.
You can’t perform that action at this time.
0 commit comments