ChangeSet 1.1396, 2003/06/10 14:17:24-07:00, greg@kroah.com [PATCH] PCI: replace usage of pci_present() in drivers/sbus/sbus.c drivers/sbus/sbus.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -Nru a/drivers/sbus/sbus.c b/drivers/sbus/sbus.c --- a/drivers/sbus/sbus.c Tue Jun 10 17:04:09 2003 +++ b/drivers/sbus/sbus.c Tue Jun 10 17:04:09 2003 @@ -334,7 +334,7 @@ nd = prom_searchsiblings(topnd, "sbus"); if(nd == 0) { #ifdef CONFIG_PCI - if (!pci_present()) { + if (pci_find_device(PCI_ANY_ID, PCI_ANY_ID, NULL) == NULL) { prom_printf("Neither SBUS nor PCI found.\n"); prom_halt(); } else {