modpost: add missing else to the "of" check
authorMauricio Faria de Oliveira <mfo@canonical.com>
Thu, 28 Sep 2023 20:28:07 +0000 (17:28 -0300)
committerMasahiro Yamada <masahiroy@kernel.org>
Sun, 1 Oct 2023 05:24:34 +0000 (14:24 +0900)
commitcbc3d00cf88fda95dbcafee3b38655b7a8f2650a
tree724cf5e7829ca3b206b0b17b3142e2e3eba7daef
parent28d49e171676afb7df7f47798391364af9abed7f
modpost: add missing else to the "of" check

Without this 'else' statement, an "usb" name goes into two handlers:
the first/previous 'if' statement _AND_ the for-loop over 'devtable',
but the latter is useless as it has no 'usb' device_id entry anyway.

Tested with allmodconfig before/after patch; no changes to *.mod.c:

    git checkout v6.6-rc3
    make -j$(nproc) allmodconfig
    make -j$(nproc) olddefconfig

    make -j$(nproc)
    find . -name '*.mod.c' | cpio -pd /tmp/before

    # apply patch

    make -j$(nproc)
    find . -name '*.mod.c' | cpio -pd /tmp/after

    diff -r /tmp/before/ /tmp/after/
    # no difference

Fixes: acbef7b76629 ("modpost: fix module autoloading for OF devices with generic compatible property")
Signed-off-by: Mauricio Faria de Oliveira <mfo@canonical.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/mod/file2alias.c