diff options
author | Herve Codina <herve.codina@bootlin.com> | 2023-03-14 09:21:57 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-03-14 13:58:58 +0000 |
commit | 6ffa0da5c63f8408101d01075709981005eb66ec (patch) | |
tree | 93f7d7c3e180a1748900e9b4d3e2c12b08ec9406 | |
parent | 0d3a5178c2994eaf91ad135816a79138055b394a (diff) | |
download | linux-stable-6ffa0da5c63f8408101d01075709981005eb66ec.tar.gz linux-stable-6ffa0da5c63f8408101d01075709981005eb66ec.tar.bz2 linux-stable-6ffa0da5c63f8408101d01075709981005eb66ec.zip |
soc: fsl: cpm1: qmc: Fix test dependency
The QMC depends on (SOC_FSL && COMPILE_TEST). SOC_FSL does not exist.
Fix the dependency using the correct one: FSL_SOC.
Signed-off-by: Herve Codina <herve.codina@bootlin.com>
Link: https://lore.kernel.org/r/20230314082157.137176-1-herve.codina@bootlin.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/soc/fsl/qe/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/fsl/qe/Kconfig b/drivers/soc/fsl/qe/Kconfig index f90cfdf0c763..7268c2fbcbc1 100644 --- a/drivers/soc/fsl/qe/Kconfig +++ b/drivers/soc/fsl/qe/Kconfig @@ -47,7 +47,7 @@ config CPM_TSA config CPM_QMC tristate "CPM QMC support" depends on OF && HAS_IOMEM - depends on CPM1 || (SOC_FSL && COMPILE_TEST) + depends on CPM1 || (FSL_SOC && COMPILE_TEST) depends on CPM_TSA help Freescale CPM QUICC Multichannel Controller |