PM: AVS: rockchip-io: Move the driver to the rockchip specific drivers
The avs drivers are all SoC specific drivers that doesn't share any code. Instead they are located in a directory, mostly to keep similar functionality together. From a maintenance point of view, it makes better sense to collect SoC specific drivers like these, into the SoC specific directories. Therefore, let's move the rockchip-io driver to the rockchip directory. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Acked-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
0b8417c141
commit
e943c43b32
5 changed files with 9 additions and 9 deletions
|
@ -27,11 +27,3 @@ config QCOM_CPR
|
||||||
|
|
||||||
To compile this driver as a module, choose M here: the module will
|
To compile this driver as a module, choose M here: the module will
|
||||||
be called qcom-cpr
|
be called qcom-cpr
|
||||||
|
|
||||||
config ROCKCHIP_IODOMAIN
|
|
||||||
tristate "Rockchip IO domain support"
|
|
||||||
depends on POWER_AVS && ARCH_ROCKCHIP && OF
|
|
||||||
help
|
|
||||||
Say y here to enable support io domains on Rockchip SoCs. It is
|
|
||||||
necessary for the io domain setting of the SoC to match the
|
|
||||||
voltage supplied by the regulators.
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
obj-$(CONFIG_POWER_AVS_OMAP) += smartreflex.o
|
obj-$(CONFIG_POWER_AVS_OMAP) += smartreflex.o
|
||||||
obj-$(CONFIG_QCOM_CPR) += qcom-cpr.o
|
obj-$(CONFIG_QCOM_CPR) += qcom-cpr.o
|
||||||
obj-$(CONFIG_ROCKCHIP_IODOMAIN) += rockchip-io-domain.o
|
|
||||||
|
|
|
@ -14,6 +14,14 @@ config ROCKCHIP_GRF
|
||||||
In a lot of cases there also need to be default settings initialized
|
In a lot of cases there also need to be default settings initialized
|
||||||
to make some of them conform to expectations of the kernel.
|
to make some of them conform to expectations of the kernel.
|
||||||
|
|
||||||
|
config ROCKCHIP_IODOMAIN
|
||||||
|
tristate "Rockchip IO domain support"
|
||||||
|
depends on OF
|
||||||
|
help
|
||||||
|
Say y here to enable support io domains on Rockchip SoCs. It is
|
||||||
|
necessary for the io domain setting of the SoC to match the
|
||||||
|
voltage supplied by the regulators.
|
||||||
|
|
||||||
config ROCKCHIP_PM_DOMAINS
|
config ROCKCHIP_PM_DOMAINS
|
||||||
bool "Rockchip generic power domain"
|
bool "Rockchip generic power domain"
|
||||||
depends on PM
|
depends on PM
|
||||||
|
|
|
@ -3,4 +3,5 @@
|
||||||
# Rockchip Soc drivers
|
# Rockchip Soc drivers
|
||||||
#
|
#
|
||||||
obj-$(CONFIG_ROCKCHIP_GRF) += grf.o
|
obj-$(CONFIG_ROCKCHIP_GRF) += grf.o
|
||||||
|
obj-$(CONFIG_ROCKCHIP_IODOMAIN) += io-domain.o
|
||||||
obj-$(CONFIG_ROCKCHIP_PM_DOMAINS) += pm_domains.o
|
obj-$(CONFIG_ROCKCHIP_PM_DOMAINS) += pm_domains.o
|
||||||
|
|
Loading…
Add table
Reference in a new issue