rtc: da9063: Use device_get_match_data()
authorBiju Das <biju.das.jz@bp.renesas.com>
Fri, 5 Jan 2024 14:53:43 +0000 (14:53 +0000)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 18 Jan 2024 00:00:21 +0000 (01:00 +0100)
Replace of_match_node()->device_get_match_data() for
the data associated with device match.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20240105145344.204453-3-biju.das.jz@bp.renesas.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-da9063.c

index b3a1f852c318b8c8a9a8647c643421bc9b21639a..265abdd7e935fdcfe8ec26868f48f0e109091368 100644 (file)
@@ -377,7 +377,6 @@ static int da9063_rtc_probe(struct platform_device *pdev)
 {
        struct da9063_compatible_rtc *rtc;
        const struct da9063_compatible_rtc_regmap *config;
-       const struct of_device_id *match;
        int irq_alarm;
        u8 data[RTC_DATA_LEN];
        int ret;
@@ -385,14 +384,11 @@ static int da9063_rtc_probe(struct platform_device *pdev)
        if (!pdev->dev.of_node)
                return -ENXIO;
 
-       match = of_match_node(da9063_compatible_reg_id_table,
-                             pdev->dev.of_node);
-
        rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
        if (!rtc)
                return -ENOMEM;
 
-       rtc->config = match->data;
+       rtc->config = device_get_match_data(&pdev->dev);
        if (of_device_is_compatible(pdev->dev.of_node, "dlg,da9063-rtc")) {
                struct da9063 *chip = dev_get_drvdata(pdev->dev.parent);