projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b69bcd9
)
isdn: avm: call pci_disable_device() if pci_probe() failed
author
Kulikov Vasiliy
<segooon@gmail.com>
Mon, 9 Aug 2010 09:50:47 +0000
(09:50 +0000)
committer
David S. Miller
<davem@davemloft.net>
Tue, 10 Aug 2010 09:51:10 +0000
(
02:51
-0700)
Driver should call pci_disable_device() if it returns from pci_probe()
with error.
Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/isdn/hardware/avm/t1pci.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/isdn/hardware/avm/t1pci.c
b/drivers/isdn/hardware/avm/t1pci.c
index 5a3f830980185c45614fb4fbf59f51924032223c..a79eb5afb92dda279d7634b51bd20a0e047ace40 100644
(file)
--- a/
drivers/isdn/hardware/avm/t1pci.c
+++ b/
drivers/isdn/hardware/avm/t1pci.c
@@
-210,6
+210,7
@@
static int __devinit t1pci_probe(struct pci_dev *dev,
if (retval != 0) {
printk(KERN_ERR "t1pci: no AVM-T1-PCI at i/o %#x, irq %d detected, mem %#x\n",
param.port, param.irq, param.membase);
+ pci_disable_device(dev);
return -ENODEV;
}
return 0;