mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
omap3: spi: Correct ti, pindir-d0-out-d1-in parsing
The ti,pindir-d0-out-d1-in property is not expected to have a value according to the device-tree binding, so treat it as a boolean not a uint property. Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> Reviewed-by: Jagan Teki <jagan@openedev.com>
This commit is contained in:
parent
4b5f6c52e7
commit
63018a3edd
1 changed files with 4 additions and 2 deletions
|
@ -630,8 +630,10 @@ static int omap3_spi_probe(struct udevice *dev)
|
|||
(struct omap2_mcspi_platform_config*)dev_get_driver_data(dev);
|
||||
|
||||
priv->regs = (struct mcspi *)(devfdt_get_addr(dev) + data->regs_offset);
|
||||
priv->pin_dir = fdtdec_get_uint(blob, node, "ti,pindir-d0-out-d1-in",
|
||||
MCSPI_PINDIR_D0_IN_D1_OUT);
|
||||
if (fdtdec_get_bool(blob, node, "ti,pindir-d0-out-d1-in"))
|
||||
priv->pin_dir = MCSPI_PINDIR_D0_OUT_D1_IN;
|
||||
else
|
||||
priv->pin_dir = MCSPI_PINDIR_D0_IN_D1_OUT;
|
||||
priv->wordlen = SPI_DEFAULT_WORDLEN;
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue