This is a note to let you know that I've just added the patch titled
media: v4l2: added missing mutex.h include to v4l2-ctrls.h
to the 3.4-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
media-v4l2-added-missing-mutex.h-include-to-v4l2-ctrls.h.patch
and it can be found in the queue-3.4 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From a19dec6ea94c036af68c31930c1c92681f55af41 Mon Sep 17 00:00:00 2001
From: Andrzej Hajda <[email protected]>
Date: Fri, 28 Jun 2013 05:44:22 -0300
Subject: media: v4l2: added missing mutex.h include to v4l2-ctrls.h
From: Andrzej Hajda <[email protected]>
commit a19dec6ea94c036af68c31930c1c92681f55af41 upstream.
This patch fixes following error:
include/media/v4l2-ctrls.h:193:15: error: field â_lockâ has incomplete type
include/media/v4l2-ctrls.h: In function âv4l2_ctrl_lockâ:
include/media/v4l2-ctrls.h:570:2: error: implicit declaration of
function âmutex_lockâ [-Werror=implicit-function-declaration]
include/media/v4l2-ctrls.h: In function âv4l2_ctrl_unlockâ:
include/media/v4l2-ctrls.h:579:2: error: implicit declaration of
function âmutex_unlockâ [-Werror=implicit-function-declaration]
Signed-off-by: Andrzej Hajda <[email protected]>
Signed-off-by: Kyungmin Park <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
include/media/v4l2-ctrls.h | 1 +
1 file changed, 1 insertion(+)
--- a/include/media/v4l2-ctrls.h
+++ b/include/media/v4l2-ctrls.h
@@ -22,6 +22,7 @@
#define _V4L2_CTRLS_H
#include <linux/list.h>
+#include <linux/mutex.h>
#include <linux/videodev2.h>
/* forward references */
Patches currently in stable-queue which might be from [email protected] are
queue-3.4/media-v4l2-added-missing-mutex.h-include-to-v4l2-ctrls.h.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html