Skip to content

Commit

Permalink
s390/pci: rename pci_probe to s390_pci_probe
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Feb 14, 2013
1 parent a50b2ea commit 1e5635d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion arch/s390/include/asm/pci.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 *);
Expand Down
8 changes: 4 additions & 4 deletions arch/s390/pci/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion drivers/pci/hotplug/s390_pci_hpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 1e5635d

Please sign in to comment.