]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
hwmon: (sis5595) fix sparse warning
authorMark M. Hoffman <mhoffman@lightlink.com>
Sun, 14 Oct 2007 18:57:35 +0000 (14:57 -0400)
committerMark M. Hoffman <mhoffman@lightlink.com>
Sun, 14 Oct 2007 18:57:35 +0000 (14:57 -0400)
Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
drivers/hwmon/sis5595.c

index 79a5376a8d818c18de57471ef609832c87f7184c..860b71ccbb86bde3e27dcc549303d8ea95ee76b8 100644 (file)
@@ -739,11 +739,10 @@ static int __devinit sis5595_pci_probe(struct pci_dev *dev,
        int *i;
 
        for (i = blacklist; *i != 0; i++) {
-               struct pci_dev *dev;
-               dev = pci_get_device(PCI_VENDOR_ID_SI, *i, NULL);
-               if (dev) {
-                       dev_err(&dev->dev, "Looked for SIS5595 but found unsupported device %.4x\n", *i);
-                       pci_dev_put(dev);
+               struct pci_dev *d;
+               if ((d = pci_get_device(PCI_VENDOR_ID_SI, *i, NULL))) {
+                       dev_err(&d->dev, "Looked for SIS5595 but found unsupported device %.4x\n", *i);
+                       pci_dev_put(d);
                        return -ENODEV;
                }
        }