Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: marvell: ARMADA375_USBCLUSTER_PHY should not default to y, unconditionally

Merely enabling CONFIG_COMPILE_TEST should not enable additional code.
To fix this, restrict the automatic enabling of ARMADA375_USBCLUSTER_PHY
to MACH_ARMADA_375, and ask the user in case of compile-testing.

Fixes: eee47538ec1f2619 ("phy: add support for USB cluster on the Armada 375 SoC")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20210208150252.424706-1-geert+renesas@glider.be
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Geert Uytterhoeven and committed by
Vinod Koul
6cb17707 f26fde36

+2 -2
+2 -2
drivers/phy/marvell/Kconfig
··· 3 3 # Phy drivers for Marvell platforms 4 4 # 5 5 config ARMADA375_USBCLUSTER_PHY 6 - def_bool y 7 - depends on MACH_ARMADA_375 || COMPILE_TEST 6 + bool "Armada 375 USB cluster PHY support" if COMPILE_TEST 7 + default y if MACH_ARMADA_375 8 8 depends on OF && HAS_IOMEM 9 9 select GENERIC_PHY 10 10