Skip to content

Commit 257608f

Browse files
Sebastian OttMartin Schwidefsky
authored andcommitted
s390/pci: reenable per default
HW, FW and Linux support is in a better shape now - let's reenable pci bus probing per default. Acked-by: Gerald Schaefer <[email protected]> Signed-off-by: Sebastian Ott <[email protected]> Signed-off-by: Martin Schwidefsky <[email protected]>
1 parent f7038b7 commit 257608f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arch/s390/pci/pci.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -919,13 +919,13 @@ static void zpci_mem_exit(void)
919919
kmem_cache_destroy(zdev_fmb_cache);
920920
}
921921

922-
static unsigned int s390_pci_probe;
922+
static unsigned int s390_pci_probe = 1;
923923
static unsigned int s390_pci_initialized;
924924

925925
char * __init pcibios_setup(char *str)
926926
{
927-
if (!strcmp(str, "on")) {
928-
s390_pci_probe = 1;
927+
if (!strcmp(str, "off")) {
928+
s390_pci_probe = 0;
929929
return NULL;
930930
}
931931
return str;

0 commit comments

Comments
 (0)