Commit 86341a84 authored by Ulf Hansson's avatar Ulf Hansson
Browse files

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 <geert+renesas@glider.be>
Cc: Magnus Damm <magnus.damm@gmail.com>
Cc: <linux-renesas-soc@vger.kernel.org>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 84e9c58c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2593,6 +2593,7 @@ F: arch/arm/include/debug/renesas-scif.S
F:	arch/arm/mach-shmobile/
F:	arch/arm64/boot/dts/renesas/
F:	arch/riscv/boot/dts/renesas/
F:	drivers/genpd/renesas/
F:	drivers/soc/renesas/
F:	include/linux/soc/renesas/
K:	\brenesas,
+1 −0
Original line number Diff line number Diff line
@@ -5,3 +5,4 @@ obj-y += apple/
obj-y					+= bcm/
obj-y					+= mediatek/
obj-y					+= qcom/
obj-y					+= renesas/
+30 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
# SoC
obj-$(CONFIG_SYSC_R8A7742)	+= r8a7742-sysc.o
obj-$(CONFIG_SYSC_R8A7743)	+= r8a7743-sysc.o
obj-$(CONFIG_SYSC_R8A7745)	+= r8a7745-sysc.o
obj-$(CONFIG_SYSC_R8A77470)	+= r8a77470-sysc.o
obj-$(CONFIG_SYSC_R8A774A1)	+= r8a774a1-sysc.o
obj-$(CONFIG_SYSC_R8A774B1)	+= r8a774b1-sysc.o
obj-$(CONFIG_SYSC_R8A774C0)	+= r8a774c0-sysc.o
obj-$(CONFIG_SYSC_R8A774E1)	+= r8a774e1-sysc.o
obj-$(CONFIG_SYSC_R8A7779)	+= r8a7779-sysc.o
obj-$(CONFIG_SYSC_R8A7790)	+= r8a7790-sysc.o
obj-$(CONFIG_SYSC_R8A7791)	+= r8a7791-sysc.o
obj-$(CONFIG_SYSC_R8A7792)	+= r8a7792-sysc.o
obj-$(CONFIG_SYSC_R8A7794)	+= r8a7794-sysc.o
obj-$(CONFIG_SYSC_R8A7795)	+= r8a7795-sysc.o
obj-$(CONFIG_SYSC_R8A77960)	+= r8a7796-sysc.o
obj-$(CONFIG_SYSC_R8A77961)	+= r8a7796-sysc.o
obj-$(CONFIG_SYSC_R8A77965)	+= r8a77965-sysc.o
obj-$(CONFIG_SYSC_R8A77970)	+= r8a77970-sysc.o
obj-$(CONFIG_SYSC_R8A77980)	+= r8a77980-sysc.o
obj-$(CONFIG_SYSC_R8A77990)	+= r8a77990-sysc.o
obj-$(CONFIG_SYSC_R8A77995)	+= r8a77995-sysc.o
obj-$(CONFIG_SYSC_R8A779A0)	+= r8a779a0-sysc.o
obj-$(CONFIG_SYSC_R8A779F0)	+= r8a779f0-sysc.o
obj-$(CONFIG_SYSC_R8A779G0)	+= r8a779g0-sysc.o
# Family
obj-$(CONFIG_SYSC_RCAR)		+= rcar-sysc.o
obj-$(CONFIG_SYSC_RCAR_GEN4)	+= rcar-gen4-sysc.o
obj-$(CONFIG_SYSC_RMOBILE)	+= rmobile-sysc.o
Loading