]> git.karo-electronics.de Git - linux-beck.git/commitdiff
net: mdio-octeon: Fix octeon_mdiobus_probe function for return values
authorRadha Mohan Chintakuntla <rchintakuntla@cavium.com>
Tue, 28 Jul 2015 22:12:12 +0000 (15:12 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Jul 2015 00:17:44 +0000 (17:17 -0700)
This patch fixes a possible crash in the octeon_mdiobus_probe function
if the return values are not handled properly.

Signed-off-by: Radha Mohan Chintakuntla <rchintakuntla@cavium.com>
Signed-off-by: Tomasz Nowicki <tomasz.nowicki@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/mdio-octeon.c

index 1509937e93c09ffda7ee767d135f7614f452ed6d..fcf4e4df7cc867c25cdb75a912a41d1a1bf58560 100644 (file)
@@ -277,24 +277,28 @@ static int octeon_mdiobus_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-
        if (res_mem == NULL) {
                dev_err(&pdev->dev, "found no memory resource\n");
-               err = -ENXIO;
-               goto fail;
+               return -ENXIO;
        }
+
        bus->mdio_phys = res_mem->start;
        bus->regsize = resource_size(res_mem);
+
        if (!devm_request_mem_region(&pdev->dev, bus->mdio_phys, bus->regsize,
                                     res_mem->name)) {
                dev_err(&pdev->dev, "request_mem_region failed\n");
-               goto fail;
+               return -ENXIO;
        }
+
        bus->register_base =
                (u64)devm_ioremap(&pdev->dev, bus->mdio_phys, bus->regsize);
+       if (!bus->register_base) {
+               dev_err(&pdev->dev, "dev_ioremap failed\n");
+               return -ENOMEM;
+       }
 
        bus->mii_bus = mdiobus_alloc();
-
        if (!bus->mii_bus)
                goto fail;