Re: [PATCH v3] video: fbdev: arcfb: add missed free_irq and fix the order of request_irq

2020-03-20 Thread Bartlomiej Zolnierkiewicz
On 3/10/20 3:30 PM, Chuhong Yuan wrote: > The driver forgets to free irq in remove which is requested in > probe. > Add the missed call to fix it. > Also, the position of request_irq() in probe should be put before > register_framebuffer(). > > Signed-off-by: Chuhong Yuan > --- > Changes in v3:

[PATCH v3] video: fbdev: arcfb: add missed free_irq and fix the order of request_irq

2020-03-10 Thread Chuhong Yuan
The driver forgets to free irq in remove which is requested in probe. Add the missed call to fix it. Also, the position of request_irq() in probe should be put before register_framebuffer(). Signed-off-by: Chuhong Yuan --- Changes in v3: - Add missed variable par in remove. drivers/video/fbde