Re: [PATCH] asm-generic: correct reference to GENERIC_LIB_DEVMEM_IS_ALLOWED
From: Arnd Bergmann <arnd@arndb.de>
Date: 2021-10-06 15:18:00
Also in:
kernel-janitors, lkml
From: Arnd Bergmann <arnd@arndb.de>
Date: 2021-10-06 15:18:00
Also in:
kernel-janitors, lkml
On Wed, Oct 6, 2021 at 5:00 PM Lukas Bulwahn [off-list ref] wrote:
Commit 527701eda5f1 ("lib: Add a generic version of devmem_is_allowed()")
introduces the config symbol GENERIC_LIB_DEVMEM_IS_ALLOWED, but then
falsely refers to CONFIG_GENERIC_DEVMEM_IS_ALLOWED (note the missing LIB
in the reference) in ./include/asm-generic/io.h.
Luckily, ./scripts/checkkconfigsymbols.py warns on non-existing configs:
GENERIC_DEVMEM_IS_ALLOWED
Referencing files: include/asm-generic/io.h
Correct the name of the config to the intended one.
Fixes: 527701eda5f1 ("lib: Add a generic version of devmem_is_allowed()")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>Acked-by: Arnd Bergmann <arnd@arndb.de>