There are lines 504 and 508 in ad6676.c:
ret = clk_prepare_enable(conv->clk);
conv->clk = clk;
The clk_prepare_enable() returns -5. When I call clk_prepare_enable(clk) all work fine.
How it will be correct to call clk_prepare_enable()?
There are lines 504 and 508 in ad6676.c:
ret = clk_prepare_enable(conv->clk);
conv->clk = clk;
The clk_prepare_enable() returns -5. When I call clk_prepare_enable(clk) all work fine.
How it will be correct to call clk_prepare_enable()?