Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

soc: ti: Mover power-domain drivers to the genpd dir

To simplify with maintenance let's move the ti 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: Nishanth Menon <nm@ti.com>
Cc: Santosh Shilimkar <ssantosh@kernel.org>
Cc: Tero Kristo <kristo@kernel.org>
Cc: Tony Lindgren <tony@atomide.com>
Reviewed-by: Nishanth Menon <nm@ti.com>
Reviewed-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

+6 -3
+2 -1
MAINTAINERS
··· 21107 21107 F: drivers/irqchip/irq-ti-sci-intr.c 21108 21108 F: drivers/reset/reset-ti-sci.c 21109 21109 F: drivers/soc/ti/ti_sci_inta_msi.c 21110 - F: drivers/soc/ti/ti_sci_pm_domains.c 21110 + F: drivers/genpd/ti/ti_sci_pm_domains.c 21111 21111 F: include/dt-bindings/soc/ti,sci_pm_domain.h 21112 21112 F: include/linux/soc/ti/ti_sci_inta_msi.h 21113 21113 F: include/linux/soc/ti/ti_sci_protocol.h ··· 21341 21341 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 21342 21342 S: Maintained 21343 21343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git 21344 + F: drivers/genpd/ti/omap_prm.c 21344 21345 F: drivers/soc/ti/* 21345 21346 21346 21347 TI LM49xxx FAMILY ASoC CODEC DRIVERS
+1
drivers/genpd/Makefile
··· 11 11 obj-y += starfive/ 12 12 obj-y += sunxi/ 13 13 obj-y += tegra/ 14 + obj-y += ti/
+3
drivers/genpd/ti/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + obj-$(CONFIG_ARCH_OMAP2PLUS) += omap_prm.o 3 + obj-$(CONFIG_TI_SCI_PM_DOMAINS) += ti_sci_pm_domains.o
-2
drivers/soc/ti/Makefile
··· 6 6 knav_qmss-y := knav_qmss_queue.o knav_qmss_acc.o 7 7 obj-$(CONFIG_KEYSTONE_NAVIGATOR_DMA) += knav_dma.o 8 8 obj-$(CONFIG_AMX3_PM) += pm33xx.o 9 - obj-$(CONFIG_ARCH_OMAP2PLUS) += omap_prm.o 10 9 obj-$(CONFIG_WKUP_M3_IPC) += wkup_m3_ipc.o 11 - obj-$(CONFIG_TI_SCI_PM_DOMAINS) += ti_sci_pm_domains.o 12 10 obj-$(CONFIG_TI_SCI_INTA_MSI_DOMAIN) += ti_sci_inta_msi.o 13 11 obj-$(CONFIG_TI_K3_RINGACC) += k3-ringacc.o 14 12 obj-$(CONFIG_TI_K3_SOCINFO) += k3-socinfo.o
drivers/soc/ti/omap_prm.c drivers/genpd/ti/omap_prm.c
drivers/soc/ti/ti_sci_pm_domains.c drivers/genpd/ti/ti_sci_pm_domains.c