mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
0e055d179e
This driver includes the following two files directly:
- mt7621.h
- ralink_regs.h
Compilation for its related platform properly works because
its real path is included in 'arch/mips/ralink/Platform' as
cflags.
This driver depends on RALINK but also is enabled for COMPILE_TEST
where nothing about its platform is known and this directly
included files are not found at all breaking compilation.
If we want 'COMPILE_TEST' we have to change cflags also inside
'phy/ralink' subdirectory Makefile which seems that does not
like to linux-phy maintainers. Hence remove COMPILE_TEST from
Kconfig to avoid the problem.
Fixes: d87da32372
("phy: ralink: Add PHY driver for MT7621 PCIe PHY")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Link: https://lore.kernel.org/r/20201201112051.17463-2-sergio.paracuellos@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
22 lines
547 B
Plaintext
22 lines
547 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# PHY drivers for Ralink platforms.
|
|
#
|
|
config PHY_MT7621_PCI
|
|
tristate "MediaTek MT7621 PCI PHY Driver"
|
|
depends on RALINK && OF
|
|
select GENERIC_PHY
|
|
select REGMAP_MMIO
|
|
help
|
|
Say 'Y' here to add support for MediaTek MT7621 PCI PHY driver,
|
|
|
|
config PHY_RALINK_USB
|
|
tristate "Ralink USB PHY driver"
|
|
depends on RALINK || COMPILE_TEST
|
|
depends on HAS_IOMEM
|
|
select GENERIC_PHY
|
|
select MFD_SYSCON
|
|
help
|
|
This option enables support for the Ralink USB PHY found inside
|
|
RT3352, MT7620, MT7628 and MT7688.
|