Home
last modified time | relevance | path

Searched hist:"75889 e9be78febab9991f9c07fdf09d128562bf5" (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/scripts/kconfig/
H A Dconfdata.cdiff 75889e9be78febab9991f9c07fdf09d128562bf5 Fri Nov 30 03:15:48 CST 2018 Masahiro Yamada <yamada.masahiro@socionext.com> 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>