summaryrefslogtreecommitdiff
path: root/drivers/phy
diff options
context:
space:
mode:
authorXu Yang <xu.yang_2@nxp.com>2026-01-20 14:17:12 +0300
committerSasha Levin <sashal@kernel.org>2026-03-04 15:20:55 +0300
commitdc3bc979814bb215905745111eb07f4239ae7f0d (patch)
treeff7da0fa7cab8d7af982045388e7b4cd554843fa /drivers/phy
parentafb941338c8e6645e015a541d5faa2a4bdebc7af (diff)
downloadlinux-dc3bc979814bb215905745111eb07f4239ae7f0d.tar.xz
phy: fsl-imx8mq-usb: disable bind/unbind platform driver feature
[ Upstream commit 27ee0869d77b2cb404770ac49bdceae3aedf658b ] Disabling PHYs in runtime usually causes the client with external abort exception or similar issue due to lack of API to notify clients about PHY removal. This patch removes the possibility to unbind i.MX PHY drivers in runtime. Signed-off-by: Xu Yang <xu.yang_2@nxp.com> Reviewed-by: Frank Li <Frank.Li@nxp.com> Link: https://patch.msgid.link/20260120111712.3159782-1-xu.yang_2@nxp.com Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/freescale/phy-fsl-imx8mq-usb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/phy/freescale/phy-fsl-imx8mq-usb.c b/drivers/phy/freescale/phy-fsl-imx8mq-usb.c
index 043063699e06..41194083e358 100644
--- a/drivers/phy/freescale/phy-fsl-imx8mq-usb.c
+++ b/drivers/phy/freescale/phy-fsl-imx8mq-usb.c
@@ -411,6 +411,7 @@ static struct platform_driver imx8mq_usb_phy_driver = {
.driver = {
.name = "imx8mq-usb-phy",
.of_match_table = imx8mq_usb_phy_of_match,
+ .suppress_bind_attrs = true,
}
};
module_platform_driver(imx8mq_usb_phy_driver);