Skip to content
Commit e3cd5136 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kconfig: remove meaningless if-conditional in conf_read()



sym_is_choice(sym) has already been checked by previous if-block:

    if (sym_is_choice(sym) || (sym->flags & SYMBOL_NO_WRITE))
            continue;

Hence, the following code is redundant, and the comment is misleading:

    if (!sym_is_choice(sym))
            continue;
    /* fall through */

It always takes 'continue', never falls though.

Clean up the dead code.

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