aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/atm
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-11-14 13:42:38 +0530
committerDavid S. Miller <davem@davemloft.net>2017-11-14 22:04:11 +0900
commitbde533f2ea607cbbbe76ef8738b36243939a7bc2 (patch)
tree1128d687e556b8c467deb42124bebb10d8730ce8 /drivers/atm
parentnet-sysfs: trigger netlink notification on ifalias change via sysfs (diff)
downloadlinux-dev-bde533f2ea607cbbbe76ef8738b36243939a7bc2.tar.xz
linux-dev-bde533f2ea607cbbbe76ef8738b36243939a7bc2.zip
atm: horizon: Fix irq release error
atm_dev_register() can fail here and passed parameters to free irq which is not initialised. Initialization of 'dev->irq' happened after the 'goto out_free_irq'. So using 'irq' insted of 'dev->irq' in free_irq(). Signed-off-by: Arvind Yadav <arvind.yadav.cs@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 7e76b35f422c..e121b8485731 100644
--- a/drivers/atm/horizon.c
+++ b/drivers/atm/horizon.c
@@ -2803,7 +2803,7 @@ out:
return err;
out_free_irq:
- free_irq(dev->irq, dev);
+ free_irq(irq, dev);
out_free:
kfree(dev);
out_release: