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

Configure Feed

Select the types of activity you want to include in your feed.

phy: tegra194: p2u: Allow to enable driver on Tegra234

Commit de6026682569 ("phy: tegra: Add PCIe PIPE2UPHY support for Tegra234")
add support for Tegra234 to the tegra194-p2u PHY driver. But the driver is
currently not selectable when Tegra234 SoC support is enabled.

Update the Kconfig entry to allow the driver to be built when support the
Tegra234 SoC is enabled.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Link: https://lore.kernel.org/r/20241201002519.3468-1-lars@metafoo.de
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Lars-Peter Clausen and committed by
Vinod Koul
3d811a4f 21364b0f

+3 -2
+3 -2
drivers/phy/tegra/Kconfig
··· 13 13 14 14 config PHY_TEGRA194_P2U 15 15 tristate "NVIDIA Tegra194 PIPE2UPHY PHY driver" 16 - depends on ARCH_TEGRA_194_SOC || COMPILE_TEST 16 + depends on ARCH_TEGRA_194_SOC || ARCH_TEGRA_234_SOC || COMPILE_TEST 17 17 select GENERIC_PHY 18 18 help 19 - Enable this to support the P2U (PIPE to UPHY) that is part of Tegra 19x SOCs. 19 + Enable this to support the P2U (PIPE to UPHY) that is part of Tegra 19x 20 + and 234 SOCs.