From: Peng Fan Date: Mon, 2 Sep 2019 10:09:49 +0000 (+0800) Subject: power: domain: make imx8-power-domain.c legacy X-Git-Tag: v2025.01-rc5-pxa1908~2693^2~25 X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-favicon.png?a=commitdiff_plain;h=954b9311abc265e569d47876e75100b0e5e191ab;p=u-boot.git power: domain: make imx8-power-domain.c legacy The current i.MX8 power domain driver is based on i.MX vendor power domain tree which will retire later. The Linux upstream use a single pd node for power domain driver, and U-Boot will adopt that. When U-Boot i.MX8 dts synced with Linux Kernel upstream and related driver ready, the legacy driver will be removed. Signed-off-by: Peng Fan --- diff --git a/drivers/power/domain/Makefile b/drivers/power/domain/Makefile index d0dce14a08..6bd090562f 100644 --- a/drivers/power/domain/Makefile +++ b/drivers/power/domain/Makefile @@ -5,7 +5,7 @@ obj-$(CONFIG_$(SPL_)POWER_DOMAIN) += power-domain-uclass.o obj-$(CONFIG_BCM6328_POWER_DOMAIN) += bcm6328-power-domain.o -obj-$(CONFIG_IMX8_POWER_DOMAIN) += imx8-power-domain.o +obj-$(CONFIG_IMX8_POWER_DOMAIN) += imx8-power-domain-legacy.o obj-$(CONFIG_IMX8M_POWER_DOMAIN) += imx8m-power-domain.o obj-$(CONFIG_MTK_POWER_DOMAIN) += mtk-power-domain.o obj-$(CONFIG_MESON_GX_VPU_POWER_DOMAIN) += meson-gx-pwrc-vpu.o diff --git a/drivers/power/domain/imx8-power-domain.c b/drivers/power/domain/imx8-power-domain-legacy.c similarity index 100% rename from drivers/power/domain/imx8-power-domain.c rename to drivers/power/domain/imx8-power-domain-legacy.c