]> git.baikalelectronics.ru Git - kernel.git/commit
firmware: imx: fix compile-testing
authorArnd Bergmann <arnd@arndb.de>
Wed, 8 Apr 2020 19:02:57 +0000 (21:02 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 Apr 2020 07:57:44 +0000 (09:57 +0200)
commitd4072fa6686964575adb3787edf3ae0b7d99507f
tree82bf96271ed5e41e8ba55c4cb0721c93475e67f6
parent0e6c92ce1d170795a396f8108369eb2c8412797f
firmware: imx: fix compile-testing

It is nice to allow compile-testing the firmware drivers, but this
fails when the dependency is a loadable module:

aarch64-linux-ld: drivers/firmware/imx/scu-pd.o: in function `imx_sc_pd_power':
scu-pd.c:(.text+0xd8): undefined reference to `imx_scu_call_rpc'
aarch64-linux-ld: scu-pd.c:(.text+0x108): undefined reference to `imx_scu_call_rpc'
aarch64-linux-ld: drivers/firmware/imx/scu-pd.o: in function `imx_sc_pd_probe':

Change the dependencies to ensure that any driver we depend on is
either reachable or we are compile-testing and it is disabled,
effectively reverting most of the previous changes that turned
out to be incorrect.

Fixes: 0d0ee8ab838f ("firmware: imx: add COMPILE_TEST support")
Fixes: fe523403a4c1 ("firmware: imx: add COMPILE_TEST for IMX_SCU driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20200408190314.695067-1-arnd@arndb.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/firmware/imx/Kconfig