diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2014-01-07 20:55:05 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-09 22:57:13 -0500 |
commit | 4acb4d6c92cffee406f88cf96a6c30dbc24fb861 (patch) | |
tree | 250a9b2f408a8b2e1c5c6c3e7c98c374d0185f61 /drivers/net/irda | |
parent | 033b06ebe9b067bc9b988d8fc967140a870a2616 (diff) | |
download | linux-4acb4d6c92cffee406f88cf96a6c30dbc24fb861.tar.bz2 |
irda: sh_sir: use devm_request_irq()
Huqiu reported current sh_sir driver doesn't
call free_irq() in spite of using request_irq().
This patch replaces request_irq() into devm_request_irq()
to solve this issue
Reported-by: Huqiu Liu<huqiuliu@gmail.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/irda')
-rw-r--r-- | drivers/net/irda/sh_sir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/irda/sh_sir.c b/drivers/net/irda/sh_sir.c index 8d9ae5a086d5..cadf52e22464 100644 --- a/drivers/net/irda/sh_sir.c +++ b/drivers/net/irda/sh_sir.c @@ -761,7 +761,7 @@ static int sh_sir_probe(struct platform_device *pdev) goto err_mem_4; platform_set_drvdata(pdev, ndev); - err = request_irq(irq, sh_sir_irq, 0, "sh_sir", self); + err = devm_request_irq(&pdev->dev, irq, sh_sir_irq, 0, "sh_sir", self); if (err) { dev_warn(&pdev->dev, "Unable to attach sh_sir interrupt\n"); goto err_mem_4; |