Commit cee71d5d authored by Eduardo Pereira Habkost's avatar Eduardo Pereira Habkost Committed by Greg Kroah-Hartman

[PATCH] Fix compilation of ip2main

The following patch fix compilation of drivers/char/ip2main.c. It was
broken by the removal of pci_present().

It just adds open and closing braces around the code that declares the
pci_dev_i variable. The rest of the patch just change the indentation.
parent c24564a2
......@@ -707,6 +707,7 @@ ip2_loadmain(int *iop, int *irqp, unsigned char *firmware, int firmsize)
}
}
#else /* LINUX_VERSION_CODE > 2.1.99 */
{
struct pci_dev *pci_dev_i = NULL;
pci_dev_i = pci_find_device(PCI_VENDOR_ID_COMPUTONE,
PCI_DEVICE_ID_COMPUTONE_IP2EX, pci_dev_i);
......@@ -741,6 +742,7 @@ ip2_loadmain(int *iop, int *irqp, unsigned char *firmware, int firmsize)
pcibios_strerror(status);
}
}
}
#endif /* ! 2_0_X */
#else
printk( KERN_ERR "IP2: PCI card specified but PCI support not\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment