diff options
| author | Simon Glass <sjg@chromium.org> | 2020-12-03 16:55:20 -0700 | 
|---|---|---|
| committer | Simon Glass <sjg@chromium.org> | 2020-12-13 16:51:09 -0700 | 
| commit | c69cda25c9b59e53a6bc8969ada58942549f5b5d (patch) | |
| tree | 8c84d1773465eb8e06cbbaeb710daa6217f5618d /drivers/spi/mxs_spi.c | |
| parent | 4f50086ad6d69c355a07389fb436c64c92ec614a (diff) | |
dm: treewide: Rename dev_get_platdata() to dev_get_plat()
Rename this to be consistent with the change from 'platdata'.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/spi/mxs_spi.c')
| -rw-r--r-- | drivers/spi/mxs_spi.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/spi/mxs_spi.c b/drivers/spi/mxs_spi.c index 06ab1072899..3f7aade81f0 100644 --- a/drivers/spi/mxs_spi.c +++ b/drivers/spi/mxs_spi.c @@ -311,7 +311,7 @@ int mxs_spi_xfer(struct udevice *dev, unsigned int bitlen,  static int mxs_spi_probe(struct udevice *bus)  { -	struct mxs_spi_platdata *plat = dev_get_platdata(bus); +	struct mxs_spi_platdata *plat = dev_get_plat(bus);  	struct mxs_spi_priv *priv = dev_get_priv(bus);  	int ret; | 
