Commit 0348e117 authored by Yang Yingliang's avatar Yang Yingliang Committed by Greg Kroah-Hartman

staging: greybus: spi: switch to use spi_alloc_host()

Switch to use modern name function spi_alloc_host().

No functional changed.
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20240902125947.1368-7-yangyingliang@huaweicloud.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 357c4685
......@@ -490,10 +490,10 @@ int gb_spilib_master_init(struct gb_connection *connection, struct device *dev,
int ret;
u8 i;
/* Allocate master with space for data */
ctlr = spi_alloc_master(dev, sizeof(*spi));
/* Allocate host with space for data */
ctlr = spi_alloc_host(dev, sizeof(*spi));
if (!ctlr) {
dev_err(dev, "cannot alloc SPI master\n");
dev_err(dev, "cannot alloc SPI host\n");
return -ENOMEM;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment