aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/pci/pci.c
diff options
context:
space:
mode:
authorSebastian Ott <sebott@linux.vnet.ibm.com>2013-04-16 08:12:17 -0400
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2013-04-17 08:07:36 -0400
commitcb65a669f62ecca123cf4f6998903ee628c59caf (patch)
treed5083643099374154de1b6ef973d9e58b31f8f23 /arch/s390/pci/pci.c
parenta2ab833360abbed3321fd694b69a5a32ee15785f (diff)
s390/pci: do not modify function handles
Don't modify function handles to get a disabled handle - call clp_disable_fh. With this change we also do no longer deconfigure enabled functions. Reviewed-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>
Diffstat (limited to 'arch/s390/pci/pci.c')
-rw-r--r--arch/s390/pci/pci.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c
index 20823f022925..24dcf059f061 100644
--- a/arch/s390/pci/pci.c
+++ b/arch/s390/pci/pci.c
@@ -955,6 +955,13 @@ out:
955} 955}
956EXPORT_SYMBOL_GPL(zpci_enable_device); 956EXPORT_SYMBOL_GPL(zpci_enable_device);
957 957
958int zpci_disable_device(struct zpci_dev *zdev)
959{
960 zpci_dma_exit_device(zdev);
961 return clp_disable_fh(zdev);
962}
963EXPORT_SYMBOL_GPL(zpci_disable_device);
964
958int zpci_create_device(struct zpci_dev *zdev) 965int zpci_create_device(struct zpci_dev *zdev)
959{ 966{
960 int rc; 967 int rc;