parser_param_start() had a goto Away, which went to nothing but
a return statement. Remove the goto, the CamelCased label, and
just return directly.
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        struct spar_controlvm_parameters_header *phdr = NULL;
 
        if (!ctx)
-               goto Away;
+               return;
+
        phdr = (struct spar_controlvm_parameters_header *)(ctx->data);
        switch (which_string) {
        case PARSERSTRING_INITIATOR:
        default:
                break;
        }
-
-Away:
-       return;
 }
 
 static void parser_done(struct parser_context *ctx)