diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-02-18 00:02:17 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-02-18 00:02:17 +0000 |
commit | 6461bfdfc3d488046faa90d6c2c7f59fef2439c7 (patch) | |
tree | 434aee7d8a8fb7b65c5561ba78d0a366d77ab70b /arch/mips/ddb5074 | |
parent | a767d78fafd7d65d2f1aea8d6244855eb00a88af (diff) |
DDB updates from Geert. Now also works on DDB Vrc 5074.
Diffstat (limited to 'arch/mips/ddb5074')
-rw-r--r-- | arch/mips/ddb5074/pci.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/mips/ddb5074/pci.c b/arch/mips/ddb5074/pci.c index 37faaa808..50dffdcc2 100644 --- a/arch/mips/ddb5074/pci.c +++ b/arch/mips/ddb5074/pci.c @@ -5,7 +5,7 @@ * Albert Dorofeev <albert@sonycom.com> * Sony Suprastructure Center Europe (SUPC-E), Brussels * - * $Id: pci.c,v 1.2 2000/02/14 17:07:36 ralf Exp $ + * $Id: pci.c,v 1.3 2000/02/16 01:45:55 ralf Exp $ */ #include <linux/init.h> @@ -343,15 +343,15 @@ void __init pcibios_fixup_pbus_ranges(struct pci_bus *bus, ranges->mem_end -= bus->resource[1]->start; } -void __init pcibios_align_resource(void *data, struct resource *res, - unsigned long size) -{} - -int pci_assign_resource(struct pci_dev *dev, int i) +int __init pcibios_enable_device(struct pci_dev *dev) { - panic("pci_assign_resource: not yet implemented\n"); + printk("pcibios_enable_device for %04x:%04x\n", dev->vendor, dev->device); + panic("pcibios_enable_device: not yet implemented\n"); } +void __init pcibios_align_resource(void *data, struct resource *res, + unsigned long size) +{} struct pci_fixup pcibios_fixups[] = {}; |