patch-2.1.93 linux/arch/alpha/kernel/bios32.c
Next file: linux/arch/alpha/kernel/cia.c
Previous file: linux/Makefile
Back to the patch index
Back to the overall index
- Lines: 76
- Date:
Thu Apr 2 09:12:22 1998
- Orig file:
v2.1.92/linux/arch/alpha/kernel/bios32.c
- Orig date:
Wed Apr 1 20:11:47 1998
diff -u --recursive --new-file v2.1.92/linux/arch/alpha/kernel/bios32.c linux/arch/alpha/kernel/bios32.c
@@ -56,7 +56,6 @@
#else /* CONFIG_PCI */
-#include <linux/bios32.h>
#include <linux/pci.h>
#include <linux/malloc.h>
#include <linux/mm.h>
@@ -555,55 +554,6 @@
#endif /* !PCI_MODIFY */
-/*
- * Given the vendor and device ids, find the n'th instance of that device
- * in the system.
- */
-int pcibios_find_device (unsigned short vendor, unsigned short device_id,
- unsigned short index, unsigned char *bus,
- unsigned char *devfn)
-{
- unsigned int curr = 0;
- struct pci_dev *dev;
-
- for (dev = pci_devices; dev; dev = dev->next) {
- if (dev->vendor == vendor && dev->device == device_id) {
- if (curr == index) {
- *devfn = dev->devfn;
- *bus = dev->bus->number;
- return PCIBIOS_SUCCESSFUL;
- }
- ++curr;
- }
- }
- return PCIBIOS_DEVICE_NOT_FOUND;
-}
-
-
-/*
- * Given the class, find the n'th instance of that device
- * in the system.
- */
-int pcibios_find_class (unsigned int class_code, unsigned short index,
- unsigned char *bus, unsigned char *devfn)
-{
- unsigned int curr = 0;
- struct pci_dev *dev;
-
- for (dev = pci_devices; dev; dev = dev->next) {
- if (dev->class == class_code) {
- if (curr == index) {
- *devfn = dev->devfn;
- *bus = dev->bus->number;
- return PCIBIOS_SUCCESSFUL;
- }
- ++curr;
- }
- }
- return PCIBIOS_DEVICE_NOT_FOUND;
-}
-
-
int pcibios_present(void)
{
return 1;
@@ -2247,6 +2197,11 @@
return 0;
}
#endif /* CONFIG_ALPHA_MIATA */
+
+__initfunc(char *pcibios_setup(char *str))
+{
+ return str;
+}
#ifdef CONFIG_ALPHA_SRM_SETUP
void reset_for_srm(void)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov