Skip to content

Commit

Permalink
spi: rpc-if: switch to use devm_spi_alloc_host()
Browse files Browse the repository at this point in the history
Switch to use modern name function devm_spi_alloc_host().

No functional changed.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20230816094013.1275068-15-yangyingliang@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Yang Yingliang authored and Mark Brown committed Aug 16, 2023
1 parent ecd02b6 commit 46f53bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/spi/spi-rpc-if.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static int rpcif_spi_probe(struct platform_device *pdev)
struct rpcif *rpc;
int error;

ctlr = devm_spi_alloc_master(&pdev->dev, sizeof(*rpc));
ctlr = devm_spi_alloc_host(&pdev->dev, sizeof(*rpc));
if (!ctlr)
return -ENOMEM;

Expand Down

0 comments on commit 46f53bd

Please sign in to comment.