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

PHY: Ingenic: fix unconditional build of phy-ingenic-usb

Currently drivers/phy/ingenic/Makefile adds phy-ingenic-usb to targets
not depending on actual Kconfig symbol CONFIG_PHY_INGENIC_USB, so this
driver always gets built[-in] on every system.
Add missing dependency.

Fixes: 31de313dfdcf ("PHY: Ingenic: Add USB PHY driver using generic PHY framework.")
Signed-off-by: Alexander Lobakin <alobakin@pm.me>
Link: https://lore.kernel.org/r/20201222131021.4751-1-alobakin@pm.me
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Alexander Lobakin and committed by
Vinod Koul
ef019c5d 5c8fe583

+1 -1
+1 -1
drivers/phy/ingenic/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 - obj-y += phy-ingenic-usb.o 2 + obj-$(CONFIG_PHY_INGENIC_USB) += phy-ingenic-usb.o