diff options
Diffstat (limited to 'drivers/spi/sh_qspi.c')
| -rw-r--r-- | drivers/spi/sh_qspi.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/drivers/spi/sh_qspi.c b/drivers/spi/sh_qspi.c index aa1c03047e2..5ba8a8ea79f 100644 --- a/drivers/spi/sh_qspi.c +++ b/drivers/spi/sh_qspi.c @@ -302,7 +302,7 @@ static int sh_qspi_xfer(struct udevice *dev, unsigned int bitlen,  			const void *dout, void *din, unsigned long flags)  {  	struct udevice *bus = dev->parent; -	struct sh_qspi_slave *ss = dev_get_platdata(bus); +	struct sh_qspi_slave *ss = dev_get_plat(bus);  	return sh_qspi_xfer_common(ss, bitlen, dout, din, flags);  } @@ -321,16 +321,16 @@ static int sh_qspi_set_mode(struct udevice *dev, uint mode)  static int sh_qspi_probe(struct udevice *dev)  { -	struct sh_qspi_slave *ss = dev_get_platdata(dev); +	struct sh_qspi_slave *ss = dev_get_plat(dev);  	sh_qspi_init(ss);  	return 0;  } -static int sh_qspi_ofdata_to_platdata(struct udevice *dev) +static int sh_qspi_of_to_plat(struct udevice *dev)  { -	struct sh_qspi_slave *plat = dev_get_platdata(dev); +	struct sh_qspi_slave *plat = dev_get_plat(dev);  	plat->regs = (struct sh_qspi_regs *)dev_read_addr(dev); @@ -353,8 +353,8 @@ U_BOOT_DRIVER(sh_qspi) = {  	.id		= UCLASS_SPI,  	.of_match	= sh_qspi_ids,  	.ops		= &sh_qspi_ops, -	.ofdata_to_platdata = sh_qspi_ofdata_to_platdata, -	.platdata_auto_alloc_size = sizeof(struct sh_qspi_slave), +	.of_to_plat = sh_qspi_of_to_plat, +	.plat_auto	= sizeof(struct sh_qspi_slave),  	.probe		= sh_qspi_probe,  };  #endif | 
