From: Trent Piepho Date: Sun, 9 Apr 2006 21:48:04 +0000 (-0300) Subject: V4L/DVB (3757): Fix alignment after the replacement from semaphore to muxex X-Git-Tag: v2.6.18-rc1~862^2~220 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=7d0dc26952fe0b49f9139f3264318abf195fe596;p=~andy%2Flinux V4L/DVB (3757): Fix alignment after the replacement from semaphore to muxex Signed-off-by: Trent Piepho Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/cpia.h b/drivers/media/video/cpia.h index dde27a6a4a0..3dc88b7558b 100644 --- a/drivers/media/video/cpia.h +++ b/drivers/media/video/cpia.h @@ -247,7 +247,7 @@ enum v4l_camstates { struct cam_data { struct list_head cam_data_list; - struct mutex busy_lock; /* guard against SMP multithreading */ + struct mutex busy_lock; /* guard against SMP multithreading */ struct cpia_camera_ops *ops; /* lowlevel driver operations */ void *lowlevel_data; /* private data for lowlevel driver */ u8 *raw_image; /* buffer for raw image data */