drm: sti: remove useless call to dev->struct_mutex
No need to protect debugfs functions with dev->struct_mutex Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1464630800-30786-19-git-send-email-daniel.vetter@ffwll.ch
This commit is contained in:

committed by
Daniel Vetter

父節點
bd884b74bb
當前提交
ac851bf14b
@@ -177,12 +177,6 @@ static int dvo_dbg_show(struct seq_file *s, void *data)
|
||||
{
|
||||
struct drm_info_node *node = s->private;
|
||||
struct sti_dvo *dvo = (struct sti_dvo *)node->info_ent->data;
|
||||
struct drm_device *dev = node->minor->dev;
|
||||
int ret;
|
||||
|
||||
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
seq_printf(s, "DVO: (vaddr = 0x%p)", dvo->regs);
|
||||
DBGFS_DUMP(DVO_AWG_DIGSYNC_CTRL);
|
||||
@@ -193,7 +187,6 @@ static int dvo_dbg_show(struct seq_file *s, void *data)
|
||||
dvo_dbg_awg_microcode(s, dvo->regs + DVO_DIGSYNC_INSTR_I);
|
||||
seq_puts(s, "\n");
|
||||
|
||||
mutex_unlock(&dev->struct_mutex);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user