You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In rk628_csi_probe_of function, when we got success in probe, the ret value is 0, but the clk_disable_unprepare(csi->soc_24M) still will be invoked. This will cause the enable_count of soc_24M minus 1.
So if there is no other driver use soc_24M, the clock will be disable, and the the i2c comunication will be failed.
The text was updated successfully, but these errors were encountered:
kernel/drivers/media/i2c/rk628/rk628_csi_v4l2.c
Line 2163 in 604cec4
In
rk628_csi_probe_of
function, when we got success in probe, theret
value is0
, but theclk_disable_unprepare(csi->soc_24M)
still will be invoked. This will cause theenable_count
ofsoc_24M
minus 1.So if there is no other driver use soc_24M, the clock will be disable, and the the i2c comunication will be failed.
The text was updated successfully, but these errors were encountered: