ipmi: si: Use device_get_match_data()
authorRob Herring <robh@kernel.org>
Wed, 15 Nov 2023 21:02:29 +0000 (15:02 -0600)
committerCorey Minyard <minyard@acm.org>
Tue, 19 Dec 2023 12:32:27 +0000 (06:32 -0600)
Use preferred device_get_match_data() instead of of_match_device() to
get the driver match data. With this, adjust the includes to explicitly
include the correct headers.

Signed-off-by: Rob Herring <robh@kernel.org>
Message-Id: <20231115210230.3744198-1-robh@kernel.org>
Signed-off-by: Corey Minyard <minyard@acm.org>
drivers/char/ipmi/ipmi_si_platform.c

index c3d8ac7873baa1150737a8bc835f5d737520eed2..cd2edd8f8a0338f2379ac90b82a4d0783b2b4ff5 100644 (file)
 
 #include <linux/types.h>
 #include <linux/module.h>
-#include <linux/of_device.h>
-#include <linux/of_platform.h>
+#include <linux/of.h>
 #include <linux/of_address.h>
 #include <linux/of_irq.h>
+#include <linux/platform_device.h>
+#include <linux/property.h>
 #include <linux/acpi.h>
 #include "ipmi_si.h"
 #include "ipmi_dmi.h"
@@ -224,7 +225,6 @@ MODULE_DEVICE_TABLE(of, of_ipmi_match);
 
 static int of_ipmi_probe(struct platform_device *pdev)
 {
-       const struct of_device_id *match;
        struct si_sm_io io;
        struct resource resource;
        const __be32 *regsize, *regspacing, *regshift;
@@ -237,10 +237,6 @@ static int of_ipmi_probe(struct platform_device *pdev)
 
        dev_info(&pdev->dev, "probing via device tree\n");
 
-       match = of_match_device(of_ipmi_match, &pdev->dev);
-       if (!match)
-               return -ENODEV;
-
        if (!of_device_is_available(np))
                return -EINVAL;
 
@@ -269,7 +265,7 @@ static int of_ipmi_probe(struct platform_device *pdev)
        }
 
        memset(&io, 0, sizeof(io));
-       io.si_type      = (unsigned long) match->data;
+       io.si_type      = (enum si_type)device_get_match_data(&pdev->dev);
        io.addr_source  = SI_DEVICETREE;
        io.irq_setup    = ipmi_std_irq_setup;