Commit a4fab044 authored by Bjorn Helgaas's avatar Bjorn Helgaas

arm/PCI: use pci_flags PCI_PROBE_ONLY instead of arm-specific flag

CC: Russell King <linux@arm.linux.org.uk>
CC: linux-arm-kernel@lists.infradead.org
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 6696cbc3
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
#include <asm/mach/pci.h> #include <asm/mach/pci.h>
static int debug_pci; static int debug_pci;
static int use_firmware;
/* /*
* We can't use pci_find_device() here since we are * We can't use pci_find_device() here since we are
...@@ -537,7 +536,7 @@ void __init pci_common_init(struct hw_pci *hw) ...@@ -537,7 +536,7 @@ void __init pci_common_init(struct hw_pci *hw)
list_for_each_entry(sys, &hw->buses, node) { list_for_each_entry(sys, &hw->buses, node) {
struct pci_bus *bus = sys->bus; struct pci_bus *bus = sys->bus;
if (!use_firmware) { if (!pci_has_flag(PCI_PROBE_ONLY)) {
/* /*
* Size the bridge windows. * Size the bridge windows.
*/ */
...@@ -575,7 +574,7 @@ char * __init pcibios_setup(char *str) ...@@ -575,7 +574,7 @@ char * __init pcibios_setup(char *str)
debug_pci = 1; debug_pci = 1;
return NULL; return NULL;
} else if (!strcmp(str, "firmware")) { } else if (!strcmp(str, "firmware")) {
use_firmware = 1; pci_add_flags(PCI_PROBE_ONLY);
return NULL; return NULL;
} }
return str; return str;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment