[PATCH RFC/RFT 11/12] clk: samsung: fsd: Use platform_driver_probe() to avoid __refdata

From: Krzysztof Kozlowski
Date: Wed Mar 05 2025 - 16:46:41 EST


Switch registering platform driver to platform_driver_probe(), so the
'struct platform_driver' can be properly discarded after init and there
won't be need of __refdata to silence DEBUG_SECTION_MISMATCH.

The change requires using subsys_initcall instead of core_initcall,
because no device drivers would bound in the latter, as required by
platform_driver_probe().

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@xxxxxxxxxx>
---
drivers/clk/samsung/clk-fsd.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/clk/samsung/clk-fsd.c b/drivers/clk/samsung/clk-fsd.c
index 9a6006c298c2a80da0e29aeca3b09cc827caac0c..bc0287c780bfe3a68a38f53f554440b3000b1ca7 100644
--- a/drivers/clk/samsung/clk-fsd.c
+++ b/drivers/clk/samsung/clk-fsd.c
@@ -1794,17 +1794,16 @@ static const struct of_device_id fsd_cmu_of_match[] = {
},
};

-static struct platform_driver fsd_cmu_driver __refdata = {
+static struct platform_driver fsd_cmu_driver __initdata = {
.driver = {
.name = "fsd-cmu",
.of_match_table = fsd_cmu_of_match,
.suppress_bind_attrs = true,
},
- .probe = fsd_cmu_probe,
};

static int __init fsd_cmu_init(void)
{
- return platform_driver_register(&fsd_cmu_driver);
+ return platform_driver_probe(&fsd_cmu_driver, fsd_cmu_probe);
}
-core_initcall(fsd_cmu_init);
+subsys_initcall(fsd_cmu_init);

--
2.43.0