[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230714090936.937344-8-peng.fan@oss.nxp.com>
Date: Fri, 14 Jul 2023 17:09:36 +0800
From: "Peng Fan (OSS)" <peng.fan@....nxp.com>
To: shawnguo@...nel.org, s.hauer@...gutronix.de
Cc: kernel@...gutronix.de, festevam@...il.com, linux-imx@....com,
Frank.Li@....com, aisheng.dong@....com,
marcel.ziswiler@...adex.com, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org, Peng Fan <peng.fan@....com>
Subject: [PATCH 7/7] firmware: imx: scu-pd: change init level to subsys_initcall
From: Dong Aisheng <aisheng.dong@....com>
Change power domain init level to subsys_initcall to ensure it's probed
before most devices to avoid unnecessary defer probe.
Signed-off-by: Dong Aisheng <aisheng.dong@....com>
Signed-off-by: Peng Fan <peng.fan@....com>
---
drivers/firmware/imx/scu-pd.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/drivers/firmware/imx/scu-pd.c b/drivers/firmware/imx/scu-pd.c
index 31de56366a50..5e6dbadb43ae 100644
--- a/drivers/firmware/imx/scu-pd.c
+++ b/drivers/firmware/imx/scu-pd.c
@@ -587,7 +587,12 @@ static struct platform_driver imx_sc_pd_driver = {
},
.probe = imx_sc_pd_probe,
};
-builtin_platform_driver(imx_sc_pd_driver);
+
+static int __init imx_sc_pd_driver_init(void)
+{
+ return platform_driver_register(&imx_sc_pd_driver);
+}
+subsys_initcall(imx_sc_pd_driver_init);
MODULE_AUTHOR("Dong Aisheng <aisheng.dong@....com>");
MODULE_DESCRIPTION("IMX SCU Power Domain driver");
--
2.37.1
Powered by blists - more mailing lists