ps3fb: Fix ps3fb free_irq() dev_id

The dev_id arg passed to free_irq() must match that passed to
request_irq().

Fixes this PS3 error message:

Trying to free already-free IRQ 44

Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Geoff Levand and committed by Linus Torvalds fcbe6e97 9ac67a35

+2 -2
+2 -2
drivers/video/ps3fb.c
··· 1212 err_framebuffer_release: 1213 framebuffer_release(info); 1214 err_free_irq: 1215 - free_irq(ps3fb.irq_no, dev); 1216 ps3_irq_plug_destroy(ps3fb.irq_no); 1217 err_iounmap_dinfo: 1218 iounmap((u8 __iomem *)ps3fb.dinfo); ··· 1247 kthread_stop(task); 1248 } 1249 if (ps3fb.irq_no) { 1250 - free_irq(ps3fb.irq_no, dev); 1251 ps3_irq_plug_destroy(ps3fb.irq_no); 1252 } 1253 iounmap((u8 __iomem *)ps3fb.dinfo);
··· 1212 err_framebuffer_release: 1213 framebuffer_release(info); 1214 err_free_irq: 1215 + free_irq(ps3fb.irq_no, &dev->core); 1216 ps3_irq_plug_destroy(ps3fb.irq_no); 1217 err_iounmap_dinfo: 1218 iounmap((u8 __iomem *)ps3fb.dinfo); ··· 1247 kthread_stop(task); 1248 } 1249 if (ps3fb.irq_no) { 1250 + free_irq(ps3fb.irq_no, &dev->core); 1251 ps3_irq_plug_destroy(ps3fb.irq_no); 1252 } 1253 iounmap((u8 __iomem *)ps3fb.dinfo);