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

ARM: ux500: Move power-domain driver to the genpd dir

To simplify with maintenance let's move the ux500 power-domain driver to
the new genpd directory. Going forward, patches are intended to be managed
through a separate git tree, according to MAINTAINERS.

Cc: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

+4 -1
+1
MAINTAINERS
··· 2421 2421 F: drivers/clk/clk-nomadik.c 2422 2422 F: drivers/clocksource/clksrc-dbx500-prcmu.c 2423 2423 F: drivers/dma/ste_dma40* 2424 + F: drivers/genpd/st/ste-ux500-pm-domain.c 2424 2425 F: drivers/hwspinlock/u8500_hsem.c 2425 2426 F: drivers/i2c/busses/i2c-nomadik.c 2426 2427 F: drivers/iio/adc/ab8500-gpadc.c
-1
arch/arm/mach-ux500/Makefile
··· 6 6 obj-y := pm.o 7 7 obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o 8 8 obj-$(CONFIG_SMP) += platsmp.o 9 - obj-$(CONFIG_PM_GENERIC_DOMAINS) += pm_domains.o
arch/arm/mach-ux500/pm_domains.c drivers/genpd/st/ste-ux500-pm-domain.c
+1
drivers/genpd/Makefile
··· 8 8 obj-y += renesas/ 9 9 obj-y += rockchip/ 10 10 obj-y += samsung/ 11 + obj-y += st/ 11 12 obj-y += starfive/ 12 13 obj-y += sunxi/ 13 14 obj-y += tegra/
+2
drivers/genpd/st/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + obj-$(CONFIG_ARCH_U8500) += ste-ux500-pm-domain.o