mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 11:44:01 +08:00
V4L/DVB (4237): Move LOG_STATUS bracketing to a different part of the pvrusb2 driver
Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
c05c0462da
commit
4f1a3e5bc4
@ -2236,11 +2236,14 @@ struct pvr2_stream *pvr2_hdw_get_video_stream(struct pvr2_hdw *hp)
|
||||
|
||||
void pvr2_hdw_trigger_module_log(struct pvr2_hdw *hdw)
|
||||
{
|
||||
int nr = pvr2_hdw_get_unit_number(hdw);
|
||||
LOCK_TAKE(hdw->big_lock); do {
|
||||
hdw->log_requested = !0;
|
||||
printk(KERN_INFO "pvrusb2: ================= START STATUS CARD #%d =================\n", nr);
|
||||
pvr2_i2c_core_check_stale(hdw);
|
||||
hdw->log_requested = 0;
|
||||
pvr2_i2c_core_sync(hdw);
|
||||
printk(KERN_INFO "pvrusb2: ================== END STATUS CARD #%d ==================\n", nr);
|
||||
} while (0); LOCK_GIVE(hdw->big_lock);
|
||||
}
|
||||
|
||||
|
@ -578,11 +578,7 @@ static int pvr2_v4l2_do_ioctl(struct inode *inode, struct file *file,
|
||||
|
||||
case VIDIOC_LOG_STATUS:
|
||||
{
|
||||
int nr = pvr2_hdw_get_unit_number(hdw);
|
||||
|
||||
printk(KERN_INFO "pvrusb2: ================= START STATUS CARD #%d =================\n", nr);
|
||||
pvr2_hdw_trigger_module_log(hdw);
|
||||
printk(KERN_INFO "pvrusb2: ================== END STATUS CARD #%d ==================\n", nr);
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user