summaryrefslogtreecommitdiff
path: root/drivers/clk/qcom/dispcc-sc7180.c
diff options
context:
space:
mode:
authorDmitry Baryshkov <dmitry.baryshkov@linaro.org>2024-02-06 17:25:13 +0200
committerBjorn Andersson <andersson@kernel.org>2024-02-07 12:14:47 -0600
commitc334ecf355a1b1039344e29f9ef026e98760c918 (patch)
tree06e2e9f72cc917d9eb4d453b3dc37245c1a118e6 /drivers/clk/qcom/dispcc-sc7180.c
parent8f4bfd9ea17f69661dde4ae168a70bbdea39d66f (diff)
clk: qcom: dispcc-*: switch to module_platform_driver
There is no need to register display clock controllers during subsys init calls. Use module_platform_driver() instead. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org> Link: https://lore.kernel.org/r/20240206-clk-module-platform-driver-v1-2-db799bd2feeb@linaro.org Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Diffstat (limited to 'drivers/clk/qcom/dispcc-sc7180.c')
-rw-r--r--drivers/clk/qcom/dispcc-sc7180.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/clk/qcom/dispcc-sc7180.c b/drivers/clk/qcom/dispcc-sc7180.c
index 9536bfc72a43..38d7859981c7 100644
--- a/drivers/clk/qcom/dispcc-sc7180.c
+++ b/drivers/clk/qcom/dispcc-sc7180.c
@@ -724,17 +724,7 @@ static struct platform_driver disp_cc_sc7180_driver = {
},
};
-static int __init disp_cc_sc7180_init(void)
-{
- return platform_driver_register(&disp_cc_sc7180_driver);
-}
-subsys_initcall(disp_cc_sc7180_init);
-
-static void __exit disp_cc_sc7180_exit(void)
-{
- platform_driver_unregister(&disp_cc_sc7180_driver);
-}
-module_exit(disp_cc_sc7180_exit);
+module_platform_driver(disp_cc_sc7180_driver);
MODULE_DESCRIPTION("QTI DISP_CC SC7180 Driver");
MODULE_LICENSE("GPL v2");