diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-03-24 21:53:03 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-03-24 21:53:03 +0000 |
commit | 30b32d2ccbf95436b642e6208d6829dcf68981fa (patch) | |
tree | 481af37a46b22473db7cadf280a6b5466136d726 /i386/i386at/gpl/linux/pci | |
parent | 455c9e455d124e3359d8f9e16ffe111178589e6f (diff) |
prerelease work
Diffstat (limited to 'i386/i386at/gpl/linux/pci')
-rw-r--r-- | i386/i386at/gpl/linux/pci/bios32.c | 6 | ||||
-rw-r--r-- | i386/i386at/gpl/linux/pci/pci.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/i386/i386at/gpl/linux/pci/bios32.c b/i386/i386at/gpl/linux/pci/bios32.c index e10fdab..f0717fd 100644 --- a/i386/i386at/gpl/linux/pci/bios32.c +++ b/i386/i386at/gpl/linux/pci/bios32.c @@ -192,10 +192,12 @@ extern unsigned long check_pcibios(unsigned long memory_start, unsigned long mem if (signature != PCI_SIGNATURE) pcibios_entry = 0; } +#if 0 if (pcibios_entry) { printk ("pcibios_init : PCI BIOS revision %x.%02x entry at 0x%lx\n", major_revision, minor_revision, pcibios_entry); } +#endif } return memory_start; } @@ -433,13 +435,17 @@ unsigned long pcibios_init(unsigned long memory_start, unsigned long memory_end) check->fields.revision, check); continue; } +#if 0 printk ("pcibios_init : BIOS32 Service Directory structure at 0x%p\n", check); +#endif if (!bios32_entry) { if (check->fields.entry >= 0x100000) { printk("pcibios_init: entry in high memory, unable to access\n"); } else { bios32_indirect.address = bios32_entry = check->fields.entry; +#if 0 printk ("pcibios_init : BIOS32 Service Directory entry at 0x%lx\n", bios32_entry); +#endif } } else { printk ("pcibios_init : multiple entries, mail drew@colorado.edu\n"); diff --git a/i386/i386at/gpl/linux/pci/pci.c b/i386/i386at/gpl/linux/pci/pci.c index 03846d0..e5f5979 100644 --- a/i386/i386at/gpl/linux/pci/pci.c +++ b/i386/i386at/gpl/linux/pci/pci.c @@ -894,7 +894,9 @@ unsigned long pci_init (unsigned long mem_start, unsigned long mem_end) return mem_start; } +#if 0 printk("Probing PCI hardware.\n"); +#endif memset(&pci_root, 0, sizeof(pci_root)); pci_root.subordinate = scan_bus(&pci_root, &mem_start); |