ar71xx: spi-rb4xx fix.

In new kernels we should use clk_prepare_enable instead of clk_enable
since clk_enable does not make proper initialization that leads
to rise WARN_ON messages and not working spi bus on the device.

Signed-off-by: Sergey Sergeev <adron@yapic.net>
v19.07.3_mercusys_ac12_duma
Sergey Sergeev 8 years ago committed by John Crispin
parent 3fbadd624a
commit c312cef223

@ -413,7 +413,7 @@ static int rb4xx_spi_probe(struct platform_device *pdev)
goto err_put_master;
}
err = clk_enable(rbspi->ahb_clk);
err = clk_prepare_enable(rbspi->ahb_clk);
if (err)
goto err_clk_put;

Loading…
Cancel
Save