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

Commit ce3a35d3 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

V4L/DVB (7120): videobuf lock is already initialized at videobuf-core.c



Removes the duplicated mutex_init code.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 0ed4a6ea
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -413,7 +413,6 @@ static int vbi_open(struct saa7146_dev *dev, struct file *file)
			    V4L2_FIELD_SEQ_TB, // FIXME: does this really work?
			    sizeof(struct saa7146_buf),
			    file);
	mutex_init(&fh->vbi_q.lock);

	init_timer(&fh->vbi_read_timeout);
	fh->vbi_read_timeout.function = vbi_read_timeout;
+0 −2
Original line number Diff line number Diff line
@@ -1417,8 +1417,6 @@ static int video_open(struct saa7146_dev *dev, struct file *file)
			    sizeof(struct saa7146_buf),
			    file);

	mutex_init(&fh->video_q.lock);

	return 0;
}