Skip to content
Snippets Groups Projects
Commit 75889e9b authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kconfig: remove unneeded setsym label in conf_read_simple()


The two 'goto setsym' statements are reachable only when sym == NULL.

The code below the 'setsym:' label does nothing when sym == NULL
since there is just one if-block guarded by 'if (sym && ...)'.

Hence, 'goto setsym' can be replaced with 'continue'.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent a9b72284
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment