mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
spi: omap3: pre-initialize bus-speed with max. slave-speed
Otherwise the frequency is zero and the clock divider cannot be setup by 'omap3_spi_set_speed' function. Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at> Reviewed-by: Jagan Teki <jagan@openedev.com>
This commit is contained in:
parent
34ad749141
commit
b1d2b529b4
1 changed files with 2 additions and 0 deletions
|
@ -590,6 +590,8 @@ static int omap3_spi_claim_bus(struct udevice *dev)
|
|||
struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
|
||||
|
||||
priv->cs = slave_plat->cs;
|
||||
priv->freq = slave_plat->max_hz;
|
||||
|
||||
_omap3_spi_claim_bus(priv);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue