Skip to content

Commit

Permalink
s390/pci: reenable per default
Browse files Browse the repository at this point in the history
HW, FW and Linux support is in a better shape now - let's reenable
pci bus probing per default.

Acked-by: Gerald Schaefer <gerald.schaefer@de.ibm.com>
Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Sebastian Ott authored and Martin Schwidefsky committed Dec 16, 2013
1 parent f7038b7 commit 257608f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/s390/pci/pci.c
Expand Up @@ -919,13 +919,13 @@ static void zpci_mem_exit(void)
kmem_cache_destroy(zdev_fmb_cache);
}

static unsigned int s390_pci_probe;
static unsigned int s390_pci_probe = 1;
static unsigned int s390_pci_initialized;

char * __init pcibios_setup(char *str)
{
if (!strcmp(str, "on")) {
s390_pci_probe = 1;
if (!strcmp(str, "off")) {
s390_pci_probe = 0;
return NULL;
}
return str;
Expand Down

0 comments on commit 257608f

Please sign in to comment.