diff options
| author | Peng Fan <peng.fan@nxp.com> | 2025-10-17 09:56:30 +0800 |
|---|---|---|
| committer | Shawn Guo <shawnguo@kernel.org> | 2025-10-27 14:43:47 +0800 |
| commit | ff79af939d84791b1af49492431c1520f31e671b (patch) | |
| tree | 660aa0005008f08eb484f3967b9e7cc28a1f43e6 | |
| parent | 27d408697f0ca09806e49ae5e5d3fceae7a671d4 (diff) | |
firmware: imx: scu: Suppress bind attrs
The SCU driver is critical for system working properly, it should
never be removed and binded again. So suppress the bind attrs
Reviewed-by: Frank Li <Frank.Li@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
| -rw-r--r-- | drivers/firmware/imx/imx-scu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/firmware/imx/imx-scu.c b/drivers/firmware/imx/imx-scu.c index 6046156bc3c9..630e3dba4db1 100644 --- a/drivers/firmware/imx/imx-scu.c +++ b/drivers/firmware/imx/imx-scu.c @@ -352,6 +352,7 @@ static struct platform_driver imx_scu_driver = { .driver = { .name = "imx-scu", .of_match_table = imx_scu_match, + .suppress_bind_attrs = true, }, .probe = imx_scu_probe, }; |