bios32.c (5e2aa2ed08e2e280121dc7cf5609c87d464f12ef) bios32.c (4ed89f2228061422ce5f62545fd0b6f6648bd2cc)
1/*
2 * linux/arch/arm/kernel/bios32.c
3 *
4 * PCI bios-type initialisation for PCI machines
5 *
6 * Bits taken from various places.
7 */
8#include <linux/export.h>

--- 341 unchanged lines hidden (view full) ---

350 bus->bridge_ctl |= PCI_BRIDGE_CTL_FAST_BACK;
351 if (features & PCI_COMMAND_PARITY)
352 bus->bridge_ctl |= PCI_BRIDGE_CTL_PARITY;
353 }
354
355 /*
356 * Report what we did for this bus
357 */
1/*
2 * linux/arch/arm/kernel/bios32.c
3 *
4 * PCI bios-type initialisation for PCI machines
5 *
6 * Bits taken from various places.
7 */
8#include <linux/export.h>

--- 341 unchanged lines hidden (view full) ---

350 bus->bridge_ctl |= PCI_BRIDGE_CTL_FAST_BACK;
351 if (features & PCI_COMMAND_PARITY)
352 bus->bridge_ctl |= PCI_BRIDGE_CTL_PARITY;
353 }
354
355 /*
356 * Report what we did for this bus
357 */
358 printk(KERN_INFO "PCI: bus%d: Fast back to back transfers %sabled\n",
358 pr_info("PCI: bus%d: Fast back to back transfers %sabled\n",
359 bus->number, (features & PCI_COMMAND_FAST_BACK) ? "en" : "dis");
360}
361EXPORT_SYMBOL(pcibios_fixup_bus);
362
363void pcibios_add_bus(struct pci_bus *bus)
364{
365 struct pci_sys_data *sys = bus->sysdata;
366 if (sys->add_bus)

--- 295 unchanged lines hidden ---
359 bus->number, (features & PCI_COMMAND_FAST_BACK) ? "en" : "dis");
360}
361EXPORT_SYMBOL(pcibios_fixup_bus);
362
363void pcibios_add_bus(struct pci_bus *bus)
364{
365 struct pci_sys_data *sys = bus->sysdata;
366 if (sys->add_bus)

--- 295 unchanged lines hidden ---