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

soc: tegra: Move powergate-bpmp driver to the genpd dir

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

Note that, we leave the pmc driver in the soc directory for now, as it
looks like it may need some re-structuring before it's ready to be moved.

Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: Jonathan Hunter <jonathanh@nvidia.com>
Cc: Mikko Perttunen <mperttunen@nvidia.com>
Cc: <linux-tegra@vger.kernel.org>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

+3 -1
+1
drivers/genpd/Makefile
··· 10 10 obj-y += samsung/ 11 11 obj-y += starfive/ 12 12 obj-y += sunxi/ 13 + obj-y += tegra/
+2
drivers/genpd/tegra/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + obj-$(CONFIG_SOC_TEGRA_POWERGATE_BPMP) += powergate-bpmp.o
-1
drivers/soc/tegra/Makefile
··· 5 5 obj-y += common.o 6 6 obj-$(CONFIG_SOC_TEGRA_FLOWCTRL) += flowctrl.o 7 7 obj-$(CONFIG_SOC_TEGRA_PMC) += pmc.o 8 - obj-$(CONFIG_SOC_TEGRA_POWERGATE_BPMP) += powergate-bpmp.o 9 8 obj-$(CONFIG_SOC_TEGRA20_VOLTAGE_COUPLER) += regulators-tegra20.o 10 9 obj-$(CONFIG_SOC_TEGRA30_VOLTAGE_COUPLER) += regulators-tegra30.o 11 10 obj-$(CONFIG_ARCH_TEGRA_186_SOC) += ari-tegra186.o
drivers/soc/tegra/powergate-bpmp.c drivers/genpd/tegra/powergate-bpmp.c