summaryrefslogtreecommitdiff
path: root/drivers/atm
diff options
context:
space:
mode:
authorJiri Slaby <jirislaby@gmail.com>2008-11-29 20:42:28 -0800
committerDavid S. Miller <davem@davemloft.net>2008-11-29 20:42:28 -0800
commitaac725cf1649d593a13be1edc99ed489f8050a99 (patch)
tree31b341cb8ce867639d8ec61bb8840d0ab37bcb9d /drivers/atm
parente6358135147807351db3b7782d3e198a1bba8b62 (diff)
ATM: horizon, fix hrz_probe fail path
One fail path in hrz_probe omitted device disable. Fix it. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm')
-rw-r--r--drivers/atm/horizon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/atm/horizon.c b/drivers/atm/horizon.c
index 615412364e9..6b969f8c684 100644
--- a/drivers/atm/horizon.c
+++ b/drivers/atm/horizon.c
@@ -2705,7 +2705,7 @@ static int __devinit hrz_probe(struct pci_dev *pci_dev, const struct pci_device_
/* XXX DEV_LABEL is a guess */
if (!request_region(iobase, HRZ_IO_EXTENT, DEV_LABEL)) {
- return -EINVAL;
+ err = -EINVAL;
goto out_disable;
}