提交 5257a633 编写于 作者: W Wei Yongjun 提交者: Felipe Balbi

usb: gadget: mv_u3d_core: fix to pass correct device identity to free_irq()

free_irq() expects the same device identity that was passed to
corresponding request_irq(), otherwise the IRQ is not freed.
Signed-off-by: NWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: NFelipe Balbi <balbi@ti.com>
上级 315955d7
...@@ -1776,7 +1776,7 @@ static int mv_u3d_remove(struct platform_device *dev) ...@@ -1776,7 +1776,7 @@ static int mv_u3d_remove(struct platform_device *dev)
kfree(u3d->eps); kfree(u3d->eps);
if (u3d->irq) if (u3d->irq)
free_irq(u3d->irq, &dev->dev); free_irq(u3d->irq, u3d);
if (u3d->cap_regs) if (u3d->cap_regs)
iounmap(u3d->cap_regs); iounmap(u3d->cap_regs);
...@@ -1974,7 +1974,7 @@ static int mv_u3d_probe(struct platform_device *dev) ...@@ -1974,7 +1974,7 @@ static int mv_u3d_probe(struct platform_device *dev)
return 0; return 0;
err_unregister: err_unregister:
free_irq(u3d->irq, &dev->dev); free_irq(u3d->irq, u3d);
err_request_irq: err_request_irq:
err_get_irq: err_get_irq:
kfree(u3d->status_req); kfree(u3d->status_req);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册