aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/s390/include/asm/pci.h2
-rw-r--r--arch/s390/pci/pci.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/arch/s390/include/asm/pci.h b/arch/s390/include/asm/pci.h
index 23d6a245e8a7..6383c44c6629 100644
--- a/arch/s390/include/asm/pci.h
+++ b/arch/s390/include/asm/pci.h
@@ -186,7 +186,7 @@ void zpci_dma_exit(void);
186extern struct mutex zpci_list_lock; 186extern struct mutex zpci_list_lock;
187extern struct list_head zpci_list; 187extern struct list_head zpci_list;
188extern struct pci_hp_callback_ops hotplug_ops; 188extern struct pci_hp_callback_ops hotplug_ops;
189extern unsigned int pci_probe; 189extern unsigned int s390_pci_probe;
190 190
191/* FMB */ 191/* FMB */
192int zpci_fmb_enable_device(struct zpci_dev *); 192int zpci_fmb_enable_device(struct zpci_dev *);
diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c
index 60e0372545d2..aa74409db656 100644
--- a/arch/s390/pci/pci.c
+++ b/arch/s390/pci/pci.c
@@ -1072,13 +1072,13 @@ static void zpci_mem_exit(void)
1072 kmem_cache_destroy(zdev_fmb_cache); 1072 kmem_cache_destroy(zdev_fmb_cache);
1073} 1073}
1074 1074
1075unsigned int pci_probe = 1; 1075unsigned int s390_pci_probe = 1;
1076EXPORT_SYMBOL_GPL(pci_probe); 1076EXPORT_SYMBOL_GPL(s390_pci_probe);
1077 1077
1078char * __init pcibios_setup(char *str) 1078char * __init pcibios_setup(char *str)
1079{ 1079{
1080 if (!strcmp(str, "off")) { 1080 if (!strcmp(str, "off")) {
1081 pci_probe = 0; 1081 s390_pci_probe = 0;
1082 return NULL; 1082 return NULL;
1083 } 1083 }
1084 return str; 1084 return str;
@@ -1088,7 +1088,7 @@ static int __init pci_base_init(void)
1088{ 1088{
1089 int rc; 1089 int rc;
1090 1090
1091 if (!pci_probe) 1091 if (!s390_pci_probe)
1092 return 0; 1092 return 0;
1093 1093
1094 if (!test_facility(2) || !test_facility(69) 1094 if (!test_facility(2) || !test_facility(69)