ipmi:bt-bmc: Avoid unnecessary check
authorTang Bin <tangbin@cmss.chinamobile.com>
Wed, 8 Apr 2020 11:59:58 +0000 (19:59 +0800)
committerCorey Minyard <cminyard@mvista.com>
Mon, 18 May 2020 11:32:02 +0000 (06:32 -0500)
bt_bmc_probe() is only called with an openfirmware platform device.
Therefore there is no need to check that the passed in device is NULL or
that it has an openfirmware node.

Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
Message-Id: <20200408115958.2848-1-tangbin@cmss.chinamobile.com>
[Fixed the title up a bit.]
Signed-off-by: Corey Minyard <cminyard@mvista.com>
drivers/char/ipmi/bt-bmc.c

index d36aeac..890ad55 100644 (file)
@@ -430,9 +430,6 @@ static int bt_bmc_probe(struct platform_device *pdev)
        struct device *dev;
        int rc;
 
-       if (!pdev || !pdev->dev.of_node)
-               return -ENODEV;
-
        dev = &pdev->dev;
        dev_info(dev, "Found bt bmc device\n");