]> git.baikalelectronics.ru Git - kernel.git/commit
firmware_loader: revert removal of the fw_fallback_config export
authorLuis Chamberlain <mcgrof@kernel.org>
Fri, 24 Apr 2020 18:49:15 +0000 (18:49 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 26 Apr 2020 08:42:15 +0000 (10:42 +0200)
commit7e98bbc20d24a06d8ee9bb346c7068c741d486ef
tree49e1edc52c32b1d5b640ac81e134dc28eff1b7ae
parent09ca590916a4def2f52895fcf80c582f6e548100
firmware_loader: revert removal of the fw_fallback_config export

Christoph's patch removed two unsused exported symbols, however, one
symbol is used by the firmware_loader itself.  If CONFIG_FW_LOADER=m so
the firmware_loader is modular but CONFIG_FW_LOADER_USER_HELPER=y we fail
the build at mostpost.

ERROR: modpost: "fw_fallback_config" [drivers/base/firmware_loader/firmware_class.ko] undefined!

This happens because the variable fw_fallback_config is built into the
kernel if CONFIG_FW_LOADER_USER_HELPER=y always, so we need to grant
access to the firmware loader module by exporting it.

Revert only one hunk from his patch.

Fixes: 1268e671db03 ("firmware_loader: remove unused exports")
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Link: https://lore.kernel.org/r/20200424184916.22843-1-mcgrof@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/firmware_loader/fallback_table.c