mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 05:06:44 +07:00
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: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
3407e387c8
commit
47ed3bc6cf
@ -701,9 +701,8 @@ static int pvr2_v4l2_do_ioctl(struct inode *inode, struct file *file,
|
|||||||
|
|
||||||
static void pvr2_v4l2_dev_destroy(struct pvr2_v4l2_dev *dip)
|
static void pvr2_v4l2_dev_destroy(struct pvr2_v4l2_dev *dip)
|
||||||
{
|
{
|
||||||
pvr2_trace(PVR2_TRACE_INIT,
|
printk(KERN_INFO "pvrusb2: unregistering device video%d [%s]\n",
|
||||||
"unregistering device video%d [%s]",
|
dip->vdev->minor,pvr2_config_get_name(dip->config));
|
||||||
dip->vdev->minor,pvr2_config_get_name(dip->config));
|
|
||||||
if (dip->ctxt_idx >= 0) {
|
if (dip->ctxt_idx >= 0) {
|
||||||
mutex_lock(&device_lock);
|
mutex_lock(&device_lock);
|
||||||
devices[dip->ctxt_idx] = NULL;
|
devices[dip->ctxt_idx] = NULL;
|
||||||
@ -1078,9 +1077,8 @@ static void pvr2_v4l2_dev_init(struct pvr2_v4l2_dev *dip,
|
|||||||
(video_register_device(dip->vdev, v4l_type, -1) < 0)) {
|
(video_register_device(dip->vdev, v4l_type, -1) < 0)) {
|
||||||
err("Failed to register pvrusb2 v4l video device");
|
err("Failed to register pvrusb2 v4l video device");
|
||||||
} else {
|
} else {
|
||||||
pvr2_trace(PVR2_TRACE_INIT,
|
printk(KERN_INFO "pvrusb2: registered device video%d [%s]\n",
|
||||||
"registered device video%d [%s]",
|
dip->vdev->minor,pvr2_config_get_name(dip->config));
|
||||||
dip->vdev->minor,pvr2_config_get_name(dip->config));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((dip->vdev->minor < sizeof(devices)/sizeof(devices[0])) &&
|
if ((dip->vdev->minor < sizeof(devices)/sizeof(devices[0])) &&
|
||||||
|
Loading…
Reference in New Issue
Block a user