rtas_pci.c (fc8e1ead9314cf0e0f1922e661428b93d3a50d88) rtas_pci.c (0e47ff1ce65bbd0b12a9421a2756b26987ea5083)
1/*
2 * Copyright (C) 2001 Dave Engebretsen, IBM Corporation
3 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
4 *
5 * RTAS specific routines for PCI.
6 *
7 * Based on code from pci.c, chrp_pci.c and pSeries_pci.c
8 *

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

286 "linux,pci-probe-only", NULL);
287 if (prop)
288 pci_probe_only = *prop;
289
290#ifdef CONFIG_PPC32 /* Will be made generic soon */
291 prop = of_get_property(of_chosen,
292 "linux,pci-assign-all-buses", NULL);
293 if (prop && *prop)
1/*
2 * Copyright (C) 2001 Dave Engebretsen, IBM Corporation
3 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
4 *
5 * RTAS specific routines for PCI.
6 *
7 * Based on code from pci.c, chrp_pci.c and pSeries_pci.c
8 *

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

286 "linux,pci-probe-only", NULL);
287 if (prop)
288 pci_probe_only = *prop;
289
290#ifdef CONFIG_PPC32 /* Will be made generic soon */
291 prop = of_get_property(of_chosen,
292 "linux,pci-assign-all-buses", NULL);
293 if (prop && *prop)
294 ppc_pci_flags |= PPC_PCI_REASSIGN_ALL_BUS;
294 pci_add_flags(PCI_REASSIGN_ALL_BUS);
295#endif /* CONFIG_PPC32 */
296 }
297}
295#endif /* CONFIG_PPC32 */
296 }
297}