Commit 89b0dc95 authored by Sebastian Ott's avatar Sebastian Ott Committed by Martin Schwidefsky

s390/pci: disable per default

Disable pci on s390. Enable with pci=on.
Suggested-by: default avatarHeiko Carstens <heiko.carstens@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 2c3700bb
...@@ -1106,13 +1106,13 @@ void zpci_deregister_hp_ops(void) ...@@ -1106,13 +1106,13 @@ void zpci_deregister_hp_ops(void)
} }
EXPORT_SYMBOL_GPL(zpci_deregister_hp_ops); EXPORT_SYMBOL_GPL(zpci_deregister_hp_ops);
unsigned int s390_pci_probe = 1; unsigned int s390_pci_probe;
EXPORT_SYMBOL_GPL(s390_pci_probe); EXPORT_SYMBOL_GPL(s390_pci_probe);
char * __init pcibios_setup(char *str) char * __init pcibios_setup(char *str)
{ {
if (!strcmp(str, "off")) { if (!strcmp(str, "on")) {
s390_pci_probe = 0; s390_pci_probe = 1;
return NULL; return NULL;
} }
return str; return str;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment