drivers: net: fsl-mc: remove an useless break statement
The break statement is just after a goto statement, thus it will not get executed. Just remove it. Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
This commit is contained in:
parent
32221ee236
commit
3ad24e4d36
1 changed files with 0 additions and 1 deletions
|
@ -1961,7 +1961,6 @@ static int do_fsl_mc(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
default:
|
||||
printf("Invalid option: %s\n", argv[1]);
|
||||
goto usage;
|
||||
break;
|
||||
}
|
||||
return err;
|
||||
usage:
|
||||
|
|
Loading…
Reference in a new issue