forked from Minki/linux
clk: imx: imx8ulp: set suppress_bind_attrs to true
The clock driver is registered as platform devices and it is possible to reloading the driver at runtime. But actually the clocks should never be removed to make system work, attempting to bind again would result in a crash, because almost all devices depends on clock to function well. Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Abel Vesa <abel.vesa@nxp.com> Link: https://lore.kernel.org/r/20211022131513.17381-1-peng.fan@oss.nxp.com Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
This commit is contained in:
parent
fa55b7dcdc
commit
b5e29cf761
@ -559,6 +559,7 @@ static struct platform_driver imx8ulp_clk_driver = {
|
|||||||
.probe = imx8ulp_clk_probe,
|
.probe = imx8ulp_clk_probe,
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = KBUILD_MODNAME,
|
.name = KBUILD_MODNAME,
|
||||||
|
.suppress_bind_attrs = true,
|
||||||
.of_match_table = imx8ulp_clk_dt_ids,
|
.of_match_table = imx8ulp_clk_dt_ids,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user