diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2006-04-09 18:48:04 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-25 01:58:03 -0300 |
commit | 7d0dc26952fe0b49f9139f3264318abf195fe596 (patch) | |
tree | 2613934803f0fb93657280a50ee145609acfefa6 | |
parent | 5d7dc8c4f667070dbc9a65e93b0e88ba9d19f22a (diff) |
V4L/DVB (3757): Fix alignment after the replacement from semaphore to muxex
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/video/cpia.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cpia.h b/drivers/media/video/cpia.h index dde27a6a4a09..3dc88b7558bf 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 */ |