Unverified Commit 0c8e5afc authored by Yang Yingliang's avatar Yang Yingliang Committed by Mark Brown
Browse files

spi: sh-hspi: switch to use modern name



Change legacy name master to modern name host.

No functional changed.

Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Reviewed-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20230818093154.1183529-19-yangyingliang@huawei.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 82a77923
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ static int hspi_status_check_timeout(struct hspi_priv *hspi, u32 mask, u32 val)
}

/*
 *		spi master function
 *		spi host function
 */

#define hspi_hw_cs_enable(hspi)		hspi_hw_cs_ctrl(hspi, 0)
@@ -224,7 +224,7 @@ static int hspi_probe(struct platform_device *pdev)
		return -EINVAL;
	}

	ctlr = spi_alloc_master(&pdev->dev, sizeof(*hspi));
	ctlr = spi_alloc_host(&pdev->dev, sizeof(*hspi));
	if (!ctlr)
		return -ENOMEM;