Skip to content

Commit 4a3bf70

Browse files
bulwahnjic23
authored andcommitted
iio: imx8qxp-adc: fix dependency to the intended ARCH_MXC config
Commit 1e23dca ("iio: imx8qxp-adc: Add driver support for NXP IMX8QXP ADC") adds the config IMX8QXP_ADC for this new driver, which depends on the non-existing config ARCH_MXC_ARM64. Hence, ./scripts/checkkconfigsymbols.py warns: ARCH_MXC_ARM64 Referencing files: drivers/iio/adc/Kconfig Probably, the existing config ARCH_MXC is intended to be referred here. So, repair the dependency to refer to that config. Fixes: 1e23dca ("iio: imx8qxp-adc: Add driver support for NXP IMX8QXP ADC") Signed-off-by: Lukas Bulwahn <[email protected]> Reviewed-by: Fabio Estevam <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jonathan Cameron <[email protected]>
1 parent 90751fb commit 4a3bf70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/adc/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ config IMX7D_ADC
532532

533533
config IMX8QXP_ADC
534534
tristate "NXP IMX8QXP ADC driver"
535-
depends on ARCH_MXC_ARM64 || COMPILE_TEST
535+
depends on ARCH_MXC || COMPILE_TEST
536536
depends on HAS_IOMEM
537537
help
538538
Say yes here to build support for IMX8QXP ADC.

0 commit comments

Comments
 (0)