staging: unisys: visorbus: remove uneeded initializations
Several variables were initialized when not needed. Remove the extraneous initializations. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <timothy.sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e4a0643000
commit
d20a0171fb
|
@ -312,8 +312,8 @@ static void *parser_string_get(struct parser_context *ctx)
|
|||
{
|
||||
u8 *pscan;
|
||||
unsigned long nscan;
|
||||
int value_length = -1;
|
||||
void *value = NULL;
|
||||
int value_length;
|
||||
void *value;
|
||||
int i;
|
||||
|
||||
pscan = ctx->curr;
|
||||
|
|
Loading…
Reference in New Issue