Commit 5e790610 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: fix CamelCase names in parser_init()

Fix CamelCase names:
isLocal => local
tryAgain => retry
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 48e81485
......@@ -135,9 +135,9 @@ parser_init_guts(u64 addr, u32 bytes, BOOL local,
}
struct parser_context *
parser_init(u64 addr, u32 bytes, BOOL isLocal, BOOL *tryAgain)
parser_init(u64 addr, u32 bytes, BOOL local, BOOL *retry)
{
return parser_init_guts(addr, bytes, isLocal, TRUE, tryAgain);
return parser_init_guts(addr, bytes, local, TRUE, retry);
}
/* Call this instead of parser_init() if the payload area consists of just
......
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