mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00

The whole code of fallback_table.c is surrounded by #ifdef of CONFIG_FW_LOADER_USER_HELPER. Move the CONFIG_FW_LOADER_USER_HELPER switch to Makefile so that it is not compiled at all when this CONFIG option is disabled. I also removed the confusing comment, "Module or buit-in [sic]". CONFIG_FW_LOADER_USER_HELPER is a boolean option. (If it were a module, CONFIG_FW_LOADER_USER_HELPER_MODULE would be defined instead.) Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7 lines
268 B
Makefile
7 lines
268 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for the Linux firmware loader
|
|
|
|
obj-$(CONFIG_FW_LOADER_USER_HELPER) += fallback_table.o
|
|
obj-$(CONFIG_FW_LOADER) += firmware_class.o
|
|
firmware_class-objs := main.o
|
|
firmware_class-$(CONFIG_FW_LOADER_USER_HELPER) += fallback.o
|