Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53049d33 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman
Browse files

staging: unisys: refactor parser_byteStream_get



Fix this CamelCase function name:
parser_byteStream_get => parser_byte_stream_get

Update all references to use the fixed name. Fix the spacing in the typecast.

Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b2d97e4b
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -165,8 +165,7 @@ parser_simpleString_get(struct parser_context *ctx)

/* Obtain a copy of the buffer in the payload area.
 */
void *
parser_byteStream_get(struct parser_context *ctx, ulong *nbytes)
void *parser_byte_stream_get(struct parser_context *ctx, ulong *nbytes)
{
	if (!ctx->byte_stream)
		return NULL;
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ void *parser_param_get(struct parser_context *ctx, char *nam, int namesize);
void *parser_string_get(struct parser_context *ctx);
uuid_le parser_id_get(struct parser_context *ctx);
char *parser_simpleString_get(struct parser_context *ctx);
void *parser_byteStream_get(struct parser_context *ctx, ulong *nbytes);
void *parser_byte_stream_get(struct parser_context *ctx, ulong *nbytes);
void parser_done(struct parser_context *ctx);

#endif