Browse Source

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>
Jiri Slaby 16 năm trước cách đây
mục cha
commit
aac725cf16
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      drivers/atm/horizon.c

+ 1 - 1
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;
 	}