diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2023-07-03 17:10:56 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2023-07-11 15:30:08 +0200 |
commit | 930c9005ed9f6640cb67bbc5c62cd11db3c02a34 (patch) | |
tree | 991904b5e9c9e5e45c108c6e15c9be8d683c95f4 /drivers | |
parent | genpd: Create a new subsystem directory to host genpd providers (diff) | |
download | linux-930c9005ed9f6640cb67bbc5c62cd11db3c02a34.tar.xz linux-930c9005ed9f6640cb67bbc5c62cd11db3c02a34.zip |
soc: actions: Move power-domain driver to the genpd dir
To simplify with maintenance let's move the action 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: "Andreas Färber" <afaerber@suse.de>
Cc: Manivannan Sadhasivam <mani@kernel.org>
Cc: <linux-actions@lists.infradead.org>
Acked-by: Manivannan Sadhasivam <mani@kernel.org>
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/actions/Makefile | 2 | ||||
-rw-r--r-- | drivers/genpd/actions/owl-sps.c (renamed from drivers/soc/actions/owl-sps.c) | 0 | ||||
-rw-r--r-- | drivers/soc/actions/Makefile | 1 |
4 files changed, 3 insertions, 1 deletions
diff --git a/drivers/genpd/Makefile b/drivers/genpd/Makefile index a4e40e534e6a..a2d5b2095915 100644 --- a/drivers/genpd/Makefile +++ b/drivers/genpd/Makefile @@ -1 +1,2 @@ # SPDX-License-Identifier: GPL-2.0-only +obj-y += actions/ diff --git a/drivers/genpd/actions/Makefile b/drivers/genpd/actions/Makefile new file mode 100644 index 000000000000..e78c420a2454 --- /dev/null +++ b/drivers/genpd/actions/Makefile @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: GPL-2.0+ +obj-$(CONFIG_OWL_PM_DOMAINS) += owl-sps.o diff --git a/drivers/soc/actions/owl-sps.c b/drivers/genpd/actions/owl-sps.c index 73a9e0bb7e8e..73a9e0bb7e8e 100644 --- a/drivers/soc/actions/owl-sps.c +++ b/drivers/genpd/actions/owl-sps.c diff --git a/drivers/soc/actions/Makefile b/drivers/soc/actions/Makefile index 4db9e7b050e5..4ac88fec2050 100644 --- a/drivers/soc/actions/Makefile +++ b/drivers/soc/actions/Makefile @@ -1,4 +1,3 @@ # SPDX-License-Identifier: GPL-2.0+ obj-$(CONFIG_OWL_PM_DOMAINS_HELPER) += owl-sps-helper.o -obj-$(CONFIG_OWL_PM_DOMAINS) += owl-sps.o |