commit | 75889e9be78febab9991f9c07fdf09d128562bf5 | [log] [tgz] |
---|---|---|
author | Masahiro Yamada <yamada.masahiro@socionext.com> | Fri Nov 30 18:15:48 2018 +0900 |
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | Sat Dec 08 10:40:52 2018 +0900 |
tree | 8213b1bf39312fa5f4cbe7ae37a3371ef190e998 | |
parent | a9b722847872d43595d072d7fd550f08fe6764fd [diff] |
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: Masahiro Yamada <yamada.masahiro@socionext.com>