s390/pci: rename pci_probe to s390_pci_probe
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Wed, 30 Jan 2013 14:52:16 +0000 (15:52 +0100)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Thu, 14 Feb 2013 14:55:12 +0000 (15:55 +0100)
pci_probe is too generic and has a name clash with other common code parts.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/include/asm/pci.h
arch/s390/pci/pci.c
drivers/pci/hotplug/s390_pci_hpc.c

index 23d6a245e8a70f709ebb3384b917f670cb65981e..6383c44c66295c4493fa92a095b9e5a16381a24b 100644 (file)
@@ -186,7 +186,7 @@ void zpci_dma_exit(void);
 extern struct mutex zpci_list_lock;
 extern struct list_head zpci_list;
 extern struct pci_hp_callback_ops hotplug_ops;
-extern unsigned int pci_probe;
+extern unsigned int s390_pci_probe;
 
 /* FMB */
 int zpci_fmb_enable_device(struct zpci_dev *);
index 60e0372545d2800778ef067a7da9d139899fc5b8..aa74409db656107a8d1bd49758649f7d4d573318 100644 (file)
@@ -1072,13 +1072,13 @@ static void zpci_mem_exit(void)
        kmem_cache_destroy(zdev_fmb_cache);
 }
 
-unsigned int pci_probe = 1;
-EXPORT_SYMBOL_GPL(pci_probe);
+unsigned int s390_pci_probe = 1;
+EXPORT_SYMBOL_GPL(s390_pci_probe);
 
 char * __init pcibios_setup(char *str)
 {
        if (!strcmp(str, "off")) {
-               pci_probe = 0;
+               s390_pci_probe = 0;
                return NULL;
        }
        return str;
@@ -1088,7 +1088,7 @@ static int __init pci_base_init(void)
 {
        int rc;
 
-       if (!pci_probe)
+       if (!s390_pci_probe)
                return 0;
 
        if (!test_facility(2) || !test_facility(69)
index dee68e0698e1ad4effc98324de31cb171fff284c..8fe2a8aa89a1d9a107b7e1311dbb344fb350374d 100644 (file)
@@ -231,7 +231,7 @@ static int __init pci_hotplug_s390_init(void)
         * right now.
         */
 
-       if (!pci_probe)
+       if (!s390_pci_probe)
                return -EOPNOTSUPP;
 
        /* register callbacks for slot handling from arch code */