Re: [PATCH] And yet more PCI fixes for 2.5.70

Greg KH (greg@kroah.com)
Tue, 10 Jun 2003 17:11:55 -0700


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 {

-
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/