Hi Sakari, Thank you for the patch. On Monday 20 Feb 2017 17:22:18 Sakari Ailus wrote: > video_unregister_device() can be called on a never or an already > unregistered device. Drop the redundant check. > > Signed-off-by: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> Reviewed-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> > --- > drivers/media/platform/omap3isp/ispvideo.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/media/platform/omap3isp/ispvideo.c > b/drivers/media/platform/omap3isp/ispvideo.c index 218e6d7..9e9b18c 100644 > --- a/drivers/media/platform/omap3isp/ispvideo.c > +++ b/drivers/media/platform/omap3isp/ispvideo.c > @@ -1495,6 +1495,5 @@ int omap3isp_video_register(struct isp_video *video, > struct v4l2_device *vdev) > > void omap3isp_video_unregister(struct isp_video *video) > { > - if (video_is_registered(&video->video)) > - video_unregister_device(&video->video); > + video_unregister_device(&video->video); > } -- Regards, Laurent Pinchart