diff options
author | Alan Maguire <alan.maguire@oracle.com> | 2020-01-10 11:49:25 +0000 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2020-01-10 14:36:37 -0700 |
commit | 35c57fc3f8eac81b38664a0fe160e267b908d8b8 (patch) | |
tree | 0efdd18b63c138cb7674a640dcf802f8a2b15884 /drivers/base | |
parent | 6ae2bfd3df06b59aa1b15e25b9656900b15a8880 (diff) | |
download | linux-35c57fc3f8eac81b38664a0fe160e267b908d8b8.tar.gz linux-35c57fc3f8eac81b38664a0fe160e267b908d8b8.tar.bz2 linux-35c57fc3f8eac81b38664a0fe160e267b908d8b8.zip |
kunit: building kunit as a module breaks allmodconfig
kunit tests that do not support module build should depend
on KUNIT=y rather than just KUNIT in Kconfig, otherwise
they will trigger compilation errors for "make allmodconfig"
builds.
Fixes: 9fe124bf1b77 ("kunit: allow kunit to be loaded as a module")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig index c3b3b5c0b0da..5f0bc74d2409 100644 --- a/drivers/base/Kconfig +++ b/drivers/base/Kconfig @@ -150,7 +150,7 @@ config DEBUG_TEST_DRIVER_REMOVE config PM_QOS_KUNIT_TEST bool "KUnit Test for PM QoS features" - depends on KUNIT + depends on KUNIT=y config HMEM_REPORTING bool |