Commit 8a896baa authored by Wei Yongjun's avatar Wei Yongjun Committed by Tomi Valkeinen

video: nuc900fb: fix to pass correct device identity to request_irq()

The IRQ handler nuc900fb_irqhandler() use dev_id as a type of
struct nuc900fb_info *, so we should pass fbi as the device
identity to request_irq().
Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarWan Zongshun <mcuos.com@gmail.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent f64279c8
...@@ -587,8 +587,7 @@ static int nuc900fb_probe(struct platform_device *pdev) ...@@ -587,8 +587,7 @@ static int nuc900fb_probe(struct platform_device *pdev)
fbinfo->flags = FBINFO_FLAG_DEFAULT; fbinfo->flags = FBINFO_FLAG_DEFAULT;
fbinfo->pseudo_palette = &fbi->pseudo_pal; fbinfo->pseudo_palette = &fbi->pseudo_pal;
ret = request_irq(irq, nuc900fb_irqhandler, 0, ret = request_irq(irq, nuc900fb_irqhandler, 0, pdev->name, fbi);
pdev->name, fbinfo);
if (ret) { if (ret) {
dev_err(&pdev->dev, "cannot register irq handler %d -err %d\n", dev_err(&pdev->dev, "cannot register irq handler %d -err %d\n",
irq, ret); irq, ret);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment