Messages in this thread Patch in this message |  | | | From | John Kacur <> | | Subject | [PATCH 09/15] mt9d112: Convert the semaphore mess. | | Date | Mon, 11 Jan 2010 21:51:48 +0100 |
| |
init_MUTEX(_LOCKED) and DECLARE_MUTEX are going away.
Signed-off-by: John Kacur <jkacur@redhat.com> --- drivers/staging/dream/camera/mt9d112.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/dream/camera/mt9d112.c b/drivers/staging/dream/camera/mt9d112.c index 4f938f9..4c21065 100644 --- a/drivers/staging/dream/camera/mt9d112.c +++ b/drivers/staging/dream/camera/mt9d112.c @@ -36,7 +36,7 @@ struct mt9d112_ctrl { static struct mt9d112_ctrl *mt9d112_ctrl; static DECLARE_WAIT_QUEUE_HEAD(mt9d112_wait_queue); -DECLARE_MUTEX(mt9d112_sem); +DEFINE_SEMAPHORE(mt9d112_sem); /*============================================================= -- 1.6.5.2
|  |