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:
David Kershner 2017-08-30 13:36:26 -04:00 committed by Greg Kroah-Hartman
parent e4a0643000
commit d20a0171fb
1 changed files with 2 additions and 2 deletions

View File

@ -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;