atm: horizon: Fix irq release error
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Tue, 14 Nov 2017 08:12:38 +0000 (13:42 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 14 Dec 2017 08:28:24 +0000 (09:28 +0100)
commit22d2456faefaed01ef3021fb8e6752e8c2f91a74
tree15c9fb347e46b38b7348d0e706a4db8f2c67f76a
parentc488c2e141bcce57a02d308df01d6f4172393637
atm: horizon: Fix irq release error

[ Upstream commit bde533f2ea607cbbbe76ef8738b36243939a7bc2 ]

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>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/atm/horizon.c