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: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b2d97e4be9
commit
53049d3315
@ -165,14 +165,13 @@ 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;
|
||||
if (nbytes)
|
||||
*nbytes = ctx->param_bytes;
|
||||
return (void *) ctx->data;
|
||||
return (void *)ctx->data;
|
||||
}
|
||||
|
||||
uuid_le
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user