diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2008-11-30 07:42:28 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-30 07:42:28 +0300 |
commit | aac725cf1649d593a13be1edc99ed489f8050a99 (patch) | |
tree | 31b341cb8ce867639d8ec61bb8840d0ab37bcb9d /drivers/atm | |
parent | e6358135147807351db3b7782d3e198a1bba8b62 (diff) | |
download | linux-aac725cf1649d593a13be1edc99ed489f8050a99.tar.xz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/atm/horizon.c b/drivers/atm/horizon.c index 615412364e99..6b969f8c684f 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; } |