From: Sebastian Ott Date: Thu, 12 Dec 2013 16:55:22 +0000 (+0100) Subject: s390/pci: reenable per default X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=257608fb4112b4cabefd9e33a4fc2df6b64dca6a;p=openwrt%2Fstaging%2Fblogic.git 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 Signed-off-by: Sebastian Ott Signed-off-by: Martin Schwidefsky --- diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c index e3265b50f3ae..0820362c7b0f 100644 --- a/arch/s390/pci/pci.c +++ b/arch/s390/pci/pci.c @@ -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;