pci.c (320e68da59353fe6ad51b81f6865c4b674ad66ea) pci.c (85b59f5bb24aeca1a987cbb206e228bf630c8327)
1/*
2 * New-style PCI core.
3 *
4 * Copyright (c) 2004 - 2009 Paul Mundt
5 * Copyright (c) 2002 M. R. Brown
6 *
7 * Modelled after arch/mips/pci/pci.c:
8 * Copyright (C) 2003, 04 Ralf Baechle (ralf@linux-mips.org)

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

83 * initialization.
84 */
85 if (pci_initialized) {
86 mutex_lock(&pci_scan_mutex);
87 pcibios_scanbus(hose);
88 mutex_unlock(&pci_scan_mutex);
89 }
90
1/*
2 * New-style PCI core.
3 *
4 * Copyright (c) 2004 - 2009 Paul Mundt
5 * Copyright (c) 2002 M. R. Brown
6 *
7 * Modelled after arch/mips/pci/pci.c:
8 * Copyright (C) 2003, 04 Ralf Baechle (ralf@linux-mips.org)

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

83 * initialization.
84 */
85 if (pci_initialized) {
86 mutex_lock(&pci_scan_mutex);
87 pcibios_scanbus(hose);
88 mutex_unlock(&pci_scan_mutex);
89 }
90
91 return;
92
91out:
92 printk(KERN_WARNING "Skipping PCI bus scan due to resource conflict\n");
93}
94
95static int __init pcibios_init(void)
96{
97 struct pci_channel *hose;
98

--- 267 unchanged lines hidden ---
93out:
94 printk(KERN_WARNING "Skipping PCI bus scan due to resource conflict\n");
95}
96
97static int __init pcibios_init(void)
98{
99 struct pci_channel *hose;
100

--- 267 unchanged lines hidden ---