summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vc04_services/bcm2835-camera/mmal-msg.h
diff options
context:
space:
mode:
authorDerek Robson2017-03-11 04:01:59 +0100
committerGreg Kroah-Hartman2017-03-12 15:16:55 +0100
commitd0dee553a345639fa12f0669c7886cf4d3c844e6 (patch)
treeb2711a4e7d2fde085b5d43198ce389dad8c1bd89 /drivers/staging/vc04_services/bcm2835-camera/mmal-msg.h
parentstaging: bcm2835-camera: remove anonymous field declarations (diff)
downloadkernel-qcow2-linux-d0dee553a345639fa12f0669c7886cf4d3c844e6.tar.gz
kernel-qcow2-linux-d0dee553a345639fa12f0669c7886cf4d3c844e6.tar.xz
kernel-qcow2-linux-d0dee553a345639fa12f0669c7886cf4d3c844e6.zip
Staging: bcm2835: Fixed style of block comments
Fixed style of block comments across whole driver Found using checkpatch Signed-off-by: Derek Robson <robsonde@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vc04_services/bcm2835-camera/mmal-msg.h')
-rw-r--r--drivers/staging/vc04_services/bcm2835-camera/mmal-msg.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/drivers/staging/vc04_services/bcm2835-camera/mmal-msg.h b/drivers/staging/vc04_services/bcm2835-camera/mmal-msg.h
index ee074be1dbe8..bf3d1f3f2c53 100644
--- a/drivers/staging/vc04_services/bcm2835-camera/mmal-msg.h
+++ b/drivers/staging/vc04_services/bcm2835-camera/mmal-msg.h
@@ -108,9 +108,9 @@ struct mmal_msg_component_create {
/* reply from VC to component creation request */
struct mmal_msg_component_create_reply {
- u32 status; /** enum mmal_msg_status - how does this differ to
- * the one in the header?
- */
+ u32 status; /* enum mmal_msg_status - how does this differ to
+ * the one in the header?
+ */
u32 component_handle; /* VideoCore handle for component */
u32 input_num; /* Number of input ports */
u32 output_num; /* Number of output ports */
@@ -228,10 +228,12 @@ struct mmal_msg_port_action_reply {
/** Signals that the current payload is a keyframe (i.e. self decodable) */
#define MMAL_BUFFER_HEADER_FLAG_KEYFRAME (1<<3)
/** Signals a discontinuity in the stream of data (e.g. after a seek).
- * Can be used for instance by a decoder to reset its state */
+ * Can be used for instance by a decoder to reset its state
+ */
#define MMAL_BUFFER_HEADER_FLAG_DISCONTINUITY (1<<4)
/** Signals a buffer containing some kind of config data for the component
- * (e.g. codec config data) */
+ * (e.g. codec config data)
+ */
#define MMAL_BUFFER_HEADER_FLAG_CONFIG (1<<5)
/** Signals an encrypted payload */
#define MMAL_BUFFER_HEADER_FLAG_ENCRYPTED (1<<6)
@@ -314,9 +316,9 @@ struct mmal_msg_port_parameter_set {
};
struct mmal_msg_port_parameter_set_reply {
- u32 status; /** enum mmal_msg_status todo: how does this
- * differ to the one in the header?
- */
+ u32 status; /* enum mmal_msg_status todo: how does this
+ * differ to the one in the header?
+ */
};
/* port parameter getting */