Skip to content

Commit 86341a8

Browse files
committed
soc: renesas: Move power-domain drivers to the genpd dir
To simplify with maintenance let's move the renesas power-domain drivers to the new genpd directory. Going forward, patches are intended to be managed through a separate git tree, according to MAINTAINERS. Cc: Geert Uytterhoeven <[email protected]> Cc: Magnus Damm <[email protected]> Cc: <[email protected]> Signed-off-by: Ulf Hansson <[email protected]>
1 parent 84e9c58 commit 86341a8

32 files changed

+32
-27
lines changed

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,6 +2593,7 @@ F: arch/arm/include/debug/renesas-scif.S
25932593
F: arch/arm/mach-shmobile/
25942594
F: arch/arm64/boot/dts/renesas/
25952595
F: arch/riscv/boot/dts/renesas/
2596+
F: drivers/genpd/renesas/
25962597
F: drivers/soc/renesas/
25972598
F: include/linux/soc/renesas/
25982599
K: \brenesas,

drivers/genpd/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ obj-y += apple/
55
obj-y += bcm/
66
obj-y += mediatek/
77
obj-y += qcom/
8+
obj-y += renesas/

drivers/genpd/renesas/Makefile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# SPDX-License-Identifier: GPL-2.0
2+
# SoC
3+
obj-$(CONFIG_SYSC_R8A7742) += r8a7742-sysc.o
4+
obj-$(CONFIG_SYSC_R8A7743) += r8a7743-sysc.o
5+
obj-$(CONFIG_SYSC_R8A7745) += r8a7745-sysc.o
6+
obj-$(CONFIG_SYSC_R8A77470) += r8a77470-sysc.o
7+
obj-$(CONFIG_SYSC_R8A774A1) += r8a774a1-sysc.o
8+
obj-$(CONFIG_SYSC_R8A774B1) += r8a774b1-sysc.o
9+
obj-$(CONFIG_SYSC_R8A774C0) += r8a774c0-sysc.o
10+
obj-$(CONFIG_SYSC_R8A774E1) += r8a774e1-sysc.o
11+
obj-$(CONFIG_SYSC_R8A7779) += r8a7779-sysc.o
12+
obj-$(CONFIG_SYSC_R8A7790) += r8a7790-sysc.o
13+
obj-$(CONFIG_SYSC_R8A7791) += r8a7791-sysc.o
14+
obj-$(CONFIG_SYSC_R8A7792) += r8a7792-sysc.o
15+
obj-$(CONFIG_SYSC_R8A7794) += r8a7794-sysc.o
16+
obj-$(CONFIG_SYSC_R8A7795) += r8a7795-sysc.o
17+
obj-$(CONFIG_SYSC_R8A77960) += r8a7796-sysc.o
18+
obj-$(CONFIG_SYSC_R8A77961) += r8a7796-sysc.o
19+
obj-$(CONFIG_SYSC_R8A77965) += r8a77965-sysc.o
20+
obj-$(CONFIG_SYSC_R8A77970) += r8a77970-sysc.o
21+
obj-$(CONFIG_SYSC_R8A77980) += r8a77980-sysc.o
22+
obj-$(CONFIG_SYSC_R8A77990) += r8a77990-sysc.o
23+
obj-$(CONFIG_SYSC_R8A77995) += r8a77995-sysc.o
24+
obj-$(CONFIG_SYSC_R8A779A0) += r8a779a0-sysc.o
25+
obj-$(CONFIG_SYSC_R8A779F0) += r8a779f0-sysc.o
26+
obj-$(CONFIG_SYSC_R8A779G0) += r8a779g0-sysc.o
27+
# Family
28+
obj-$(CONFIG_SYSC_RCAR) += rcar-sysc.o
29+
obj-$(CONFIG_SYSC_RCAR_GEN4) += rcar-gen4-sysc.o
30+
obj-$(CONFIG_SYSC_RMOBILE) += rmobile-sysc.o

0 commit comments

Comments
 (0)