Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 257608fb authored by Sebastian Ott's avatar Sebastian Ott Committed by Martin Schwidefsky
Browse files

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: default avatarGerald Schaefer <gerald.schaefer@de.ibm.com>
Signed-off-by: default avatarSebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent f7038b7c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;