Fix the hdpvr driver to use the video_is_registered function instead of video_is_unregistered. Signed-off-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> Index: v4l-dvb-mc-uvc/linux/drivers/media/video/hdpvr/hdpvr-video.c =================================================================== --- v4l-dvb-mc-uvc.orig/linux/drivers/media/video/hdpvr/hdpvr-video.c +++ v4l-dvb-mc-uvc/linux/drivers/media/video/hdpvr/hdpvr-video.c @@ -519,7 +519,7 @@ static unsigned int hdpvr_poll(struct fi mutex_lock(&dev->io_mutex); - if (video_is_unregistered(dev->video_dev)) { + if (!video_is_registered(dev->video_dev)) { mutex_unlock(&dev->io_mutex); return -EIO; } -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html