Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 47ed3bc6 authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (4273): Always log pvrusb2 device register / unregister events



Previously the pvrusb2 driver was conditionalizing printing of the
device register / unregister messages against a debug mask.  This sort
of information should always appear, thus this patch.

Signed-off-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 3407e387
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -701,8 +701,7 @@ static int pvr2_v4l2_do_ioctl(struct inode *inode, struct file *file,

static void pvr2_v4l2_dev_destroy(struct pvr2_v4l2_dev *dip)
{
	pvr2_trace(PVR2_TRACE_INIT,
		   "unregistering device video%d [%s]",
	printk(KERN_INFO "pvrusb2: unregistering device video%d [%s]\n",
	       dip->vdev->minor,pvr2_config_get_name(dip->config));
	if (dip->ctxt_idx >= 0) {
		mutex_lock(&device_lock);
@@ -1078,8 +1077,7 @@ static void pvr2_v4l2_dev_init(struct pvr2_v4l2_dev *dip,
	    (video_register_device(dip->vdev, v4l_type, -1) < 0)) {
		err("Failed to register pvrusb2 v4l video device");
	} else {
		pvr2_trace(PVR2_TRACE_INIT,
			   "registered device video%d [%s]",
		printk(KERN_INFO "pvrusb2: registered device video%d [%s]\n",
		       dip->vdev->minor,pvr2_config_get_name(dip->config));
	}