Commit c45fe9c6 authored by Michael Zoran's avatar Michael Zoran Committed by Greg Kroah-Hartman

staging: bcm2835-camera: Convert delayed_buffer to u32

A delayed buffer field is passed between the firmware and the
kernel.  This field is never used either so it's safe to
change it to a u32.
Signed-off-by: default avatarMichael Zoran <mzoran@crowfest.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4fe08093
...@@ -347,7 +347,7 @@ struct mmal_msg_event_to_host { ...@@ -347,7 +347,7 @@ struct mmal_msg_event_to_host {
u32 cmd; u32 cmd;
u32 length; u32 length;
u8 data[MMAL_WORKER_EVENT_SPACE]; u8 data[MMAL_WORKER_EVENT_SPACE];
struct mmal_buffer_header *delayed_buffer; u32 delayed_buffer;
}; };
/* all mmal messages are serialised through this structure */ /* all mmal messages are serialised through this structure */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment