PCI: remove pci_present() from drivers/char/epca.c
drivers/char/epca.c | 13 +++----------
1 files changed, 3 insertions(+), 10 deletions(-)
diff -Nru a/drivers/char/epca.c b/drivers/char/epca.c
--- a/drivers/char/epca.c Tue Jun 10 11:22:18 2003
+++ b/drivers/char/epca.c Tue Jun 10 11:22:18 2003
@@ -1639,16 +1639,9 @@
--------------------------------------------------------------------- */
pci_boards_found = 0;
- if (pci_present())
- {
- if(num_cards < MAXBOARDS)
- pci_boards_found += init_PCI();
- num_cards += pci_boards_found;
- }
- else
- {
- printk(KERN_ERR "<Error> - No PCI BIOS found\n");
- }
+ if(num_cards < MAXBOARDS)
+ pci_boards_found += init_PCI();
+ num_cards += pci_boards_found;
#endif /* ENABLE_PCI */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/