From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EAE523C152C; Sat, 28 Feb 2026 17:39:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772300362; cv=none; b=u/VVV8ZnYx01kFwG6GPpi+AbpZVymt6UGnY1Fr2I2EKiCBbc2xCfqwmLu+vloU0YGzVRTLerZ5Fjtqwv/kK91MQhCKvppLt7p3IifIbHuSpsrEfk8MVhjl0vubQmBeo26uFJ+z8lu6hK7cCZl6UURYIguvSyKpH16e56g7MAcE8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772300362; c=relaxed/simple; bh=2HlZxEimLJFMScH+05ZMokGzWzkMwOJYBPTUJDQQWwA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=EffWWE6XL92m6whZT/fQ2k+jVsHb2Nr8XHn9doTEC8qoNYRRLEm42GIYHp44taDx6CQDLMl6h3sbMq63jZazTdyjBbpMQRhl/YJID8CwL3Vof2HQ2efLKsoeyLWFk5dtRRVveYNc+AuvbD3sKCbZB6d149Wr8HTdwjExSDrKDRA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=U/CJO61a; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="U/CJO61a" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2C5A0C19425; Sat, 28 Feb 2026 17:39:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772300361; bh=2HlZxEimLJFMScH+05ZMokGzWzkMwOJYBPTUJDQQWwA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=U/CJO61anMXotQ9DlMrEl/0BDlhJsQ+YgGz8nEzsbyasgigpIHc9HquepQ/8Ldtzb WbNk4zk9iyL12yBIv7aI60dSJExN1CdOScKZBxJvzx0kzP6+F//f/W4tIyaySrsWj/ 7Gw1iMRNp2m7TPRc5RZvz77DDN+lyOv6RDSB/1VLVzGWgzFe2u49NJ08R+BFNOCgtD OKrM7ysPmFc9Sk6Ty8jVBIRfP/7fN/vf7Ergw9PKOq/7EGMxpCjwEcUfXiPpH+b6q/ sjMdkLmBGxfCACPGVbQ7yllumaBkvV9BwFbv3nsp9II9DlYxlb3ik8qP0QMIYiU7bf 4Mah+Do0cBzQQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Xu Yang , Frank Li , Vinod Koul , Sasha Levin Subject: [PATCH 6.19 396/844] phy: fsl-imx8mq-usb: disable bind/unbind platform driver feature Date: Sat, 28 Feb 2026 12:25:09 -0500 Message-ID: <20260228173244.1509663-397-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260228173244.1509663-1-sashal@kernel.org> References: <20260228173244.1509663-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit From: Xu Yang [ 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 Reviewed-by: Frank Li Link: https://patch.msgid.link/20260120111712.3159782-1-xu.yang_2@nxp.com Signed-off-by: Vinod Koul Signed-off-by: Sasha Levin --- drivers/phy/freescale/phy-fsl-imx8mq-usb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/phy/freescale/phy-fsl-imx8mq-usb.c b/drivers/phy/freescale/phy-fsl-imx8mq-usb.c index 91b3e62743d3a..b30d01f345d20 100644 --- a/drivers/phy/freescale/phy-fsl-imx8mq-usb.c +++ b/drivers/phy/freescale/phy-fsl-imx8mq-usb.c @@ -730,6 +730,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); -- 2.51.0