mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-04 11:43:54 +08:00
staging: bcm2835-camera: fix spelling mistake: "elementry" -> "elementary"
trivial fix to spelling mistake in various comments and pr_debug messages Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
76b4580bf4
commit
34bc8f9392
@ -160,7 +160,7 @@ struct mmal_msg_port_info_get_reply {
|
||||
s32 found; /* unused */
|
||||
u32 port_handle; /**< Handle to use for this port */
|
||||
struct mmal_port port;
|
||||
struct mmal_es_format format; /* elementry stream format */
|
||||
struct mmal_es_format format; /* elementary stream format */
|
||||
union mmal_es_specific_format es; /* es type specific data */
|
||||
u8 extradata[MMAL_FORMAT_EXTRADATA_MAX_SIZE]; /* es extra data */
|
||||
};
|
||||
|
@ -906,7 +906,7 @@ static void dump_port_info(struct vchiq_mmal_port *port)
|
||||
port->current_buffer.num,
|
||||
port->current_buffer.size, port->current_buffer.alignment);
|
||||
|
||||
pr_debug("elementry stream: type:%d encoding:0x%x variant:0x%x\n",
|
||||
pr_debug("elementary stream: type:%d encoding:0x%x variant:0x%x\n",
|
||||
port->format.type,
|
||||
port->format.encoding, port->format.encoding_variant);
|
||||
|
||||
@ -970,7 +970,7 @@ static int port_info_set(struct vchiq_mmal_instance *instance,
|
||||
|
||||
port_to_mmal_msg(port, &m.u.port_info_set.port);
|
||||
|
||||
/* elementry stream format setup */
|
||||
/* elementary stream format setup */
|
||||
m.u.port_info_set.format.type = port->format.type;
|
||||
m.u.port_info_set.format.encoding = port->format.encoding;
|
||||
m.u.port_info_set.format.encoding_variant =
|
||||
@ -1079,7 +1079,7 @@ static int port_info_get(struct vchiq_mmal_instance *instance,
|
||||
port->format.bitrate = rmsg->u.port_info_get_reply.format.bitrate;
|
||||
port->format.flags = rmsg->u.port_info_get_reply.format.flags;
|
||||
|
||||
/* elementry stream format */
|
||||
/* elementary stream format */
|
||||
memcpy(&port->es,
|
||||
&rmsg->u.port_info_get_reply.es,
|
||||
sizeof(union mmal_es_specific_format));
|
||||
|
@ -75,7 +75,7 @@ struct vchiq_mmal_port {
|
||||
|
||||
/* stream format */
|
||||
struct mmal_es_format_local format;
|
||||
/* elementry stream format */
|
||||
/* elementary stream format */
|
||||
union mmal_es_specific_format es;
|
||||
|
||||
/* data buffers to fill */
|
||||
|
Loading…
Reference in New Issue
Block a user