]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ipmi: Don't report err in the SI driver for SSIF devices
authorCorey Minyard <cminyard@mvista.com>
Sat, 11 Apr 2015 01:19:18 +0000 (20:19 -0500)
committerCorey Minyard <cminyard@mvista.com>
Tue, 5 May 2015 19:24:46 +0000 (14:24 -0500)
Really ignore them by returning -ENODEV from the probe, but not
doing anything.

Signed-off-by: Corey Minyard <cminyard@mvista.com>
drivers/char/ipmi/ipmi_si_intf.c

index 468c75e103300b39070c1e404f0ef864d71e8ab1..461274168d0f18b27a220d21b8e381702a447828 100644 (file)
@@ -2244,7 +2244,7 @@ static int ipmi_pnp_probe(struct pnp_dev *dev,
        acpi_handle handle;
        acpi_status status;
        unsigned long long tmp;
-       int rv;
+       int rv = -EINVAL;
 
        acpi_dev = pnp_acpi_device(dev);
        if (!acpi_dev)
@@ -2276,6 +2276,7 @@ static int ipmi_pnp_probe(struct pnp_dev *dev,
                info->si_type = SI_BT;
                break;
        case 4: /* SSIF, just ignore */
+               rv = -ENODEV;
                goto err_free;
        default:
                dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
@@ -2336,7 +2337,7 @@ static int ipmi_pnp_probe(struct pnp_dev *dev,
 
 err_free:
        kfree(info);
-       return -EINVAL;
+       return rv;
 }
 
 static void ipmi_pnp_remove(struct pnp_dev *dev)