Re: [PATCH] staging: unisys: remove unnecessary goto

2016-02-07 Thread Greg KH
On Mon, Dec 07, 2015 at 10:58:36AM -0500, Benjamin Romer wrote: > 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 > --- > drivers/staging/unisys/visorbus/vis

[PATCH] staging: unisys: remove unnecessary goto

2015-12-07 Thread Benjamin Romer
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 --- drivers/staging/unisys/visorbus/visorchipset.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff