diff options
author | Yang Yingliang <[email protected]> | 2023-11-28 17:30:21 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2023-12-11 12:55:06 +0000 |
commit | d1d8b09d0a0a86fb785dbb0d69765fb98dde429c (patch) | |
tree | 3a79591ff40271592d0abb367ac32c1307c76158 | |
parent | 9d93c8d97b4cdb5edddb4c5530881c90eecb7e44 (diff) |
spi: wpcm-fiu: switch to use devm_spi_alloc_host()
Switch to use modern name function devm_spi_alloc_host().
No functional changed.
Signed-off-by: Yang Yingliang <[email protected]>
Link: https://msgid.link/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/spi/spi-wpcm-fiu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-wpcm-fiu.c b/drivers/spi/spi-wpcm-fiu.c index d76f7b5a9b97..6b16a22cc3a4 100644 --- a/drivers/spi/spi-wpcm-fiu.c +++ b/drivers/spi/spi-wpcm-fiu.c @@ -441,7 +441,7 @@ static int wpcm_fiu_probe(struct platform_device *pdev) struct wpcm_fiu_spi *fiu; struct resource *res; - ctrl = devm_spi_alloc_master(dev, sizeof(*fiu)); + ctrl = devm_spi_alloc_host(dev, sizeof(*fiu)); if (!ctrl) return -ENOMEM; |