diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2023-07-05 18:16:22 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2023-07-14 10:40:56 +0200 |
commit | f3fb16291f48638e9eda4f249970d34061906ba3 (patch) | |
tree | 85d31e2a42dbba6529cc55251b361c17014cb493 /drivers | |
parent | 4419644bfc7f2ef86708758060d263500af9f88a (diff) | |
download | linux-f3fb16291f48638e9eda4f249970d34061906ba3.tar.gz linux-f3fb16291f48638e9eda4f249970d34061906ba3.tar.bz2 linux-f3fb16291f48638e9eda4f249970d34061906ba3.zip |
soc: starfive: Move the power-domain driver to the genpd dir
To simplify with maintenance let's move the starfive 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: Walker Chen <walker.chen@starfivetech.com>
Cc: Conor Dooley <conor@kernel.org>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/genpd/Makefile | 1 | ||||
-rw-r--r-- | drivers/genpd/starfive/Makefile | 2 | ||||
-rw-r--r-- | drivers/genpd/starfive/jh71xx-pmu.c (renamed from drivers/soc/starfive/jh71xx_pmu.c) | 0 | ||||
-rw-r--r-- | drivers/soc/starfive/Makefile | 3 |
4 files changed, 3 insertions, 3 deletions
diff --git a/drivers/genpd/Makefile b/drivers/genpd/Makefile index 1cf0ff26a44f..baf2021235a7 100644 --- a/drivers/genpd/Makefile +++ b/drivers/genpd/Makefile @@ -8,3 +8,4 @@ obj-y += qcom/ obj-y += renesas/ obj-y += rockchip/ obj-y += samsung/ +obj-y += starfive/ diff --git a/drivers/genpd/starfive/Makefile b/drivers/genpd/starfive/Makefile new file mode 100644 index 000000000000..975bba2a29a9 --- /dev/null +++ b/drivers/genpd/starfive/Makefile @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: GPL-2.0 +obj-$(CONFIG_JH71XX_PMU) += jh71xx-pmu.o diff --git a/drivers/soc/starfive/jh71xx_pmu.c b/drivers/genpd/starfive/jh71xx-pmu.c index 7d5f50d71c0d..7d5f50d71c0d 100644 --- a/drivers/soc/starfive/jh71xx_pmu.c +++ b/drivers/genpd/starfive/jh71xx-pmu.c diff --git a/drivers/soc/starfive/Makefile b/drivers/soc/starfive/Makefile deleted file mode 100644 index 13b589d6b5f3..000000000000 --- a/drivers/soc/starfive/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0 - -obj-$(CONFIG_JH71XX_PMU) += jh71xx_pmu.o |