Commit 5a0e577f authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Mark Brown

spi: sh-hspi: Replace spi_master by spi_controller

As of commit 8caab75f ('spi: Generalize SPI "master" to
"controller"'), the old master-centric names are compatibility wrappers
for the new controller-centric names.
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 9428a073
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
struct hspi_priv { struct hspi_priv {
void __iomem *addr; void __iomem *addr;
struct spi_master *master; struct spi_controller *ctlr;
struct device *dev; struct device *dev;
struct clk *clk; struct clk *clk;
}; };
...@@ -140,10 +140,10 @@ static void hspi_hw_setup(struct hspi_priv *hspi, ...@@ -140,10 +140,10 @@ static void hspi_hw_setup(struct hspi_priv *hspi,
hspi_write(hspi, SPSCR, 0x21); /* master mode / CS control */ hspi_write(hspi, SPSCR, 0x21); /* master mode / CS control */
} }
static int hspi_transfer_one_message(struct spi_master *master, static int hspi_transfer_one_message(struct spi_controller *ctlr,
struct spi_message *msg) struct spi_message *msg)
{ {
struct hspi_priv *hspi = spi_master_get_devdata(master); struct hspi_priv *hspi = spi_controller_get_devdata(ctlr);
struct spi_transfer *t; struct spi_transfer *t;
u32 tx; u32 tx;
u32 rx; u32 rx;
...@@ -205,7 +205,7 @@ static int hspi_transfer_one_message(struct spi_master *master, ...@@ -205,7 +205,7 @@ static int hspi_transfer_one_message(struct spi_master *master,
ndelay(nsecs); ndelay(nsecs);
hspi_hw_cs_disable(hspi); hspi_hw_cs_disable(hspi);
} }
spi_finalize_current_message(master); spi_finalize_current_message(ctlr);
return ret; return ret;
} }
...@@ -213,7 +213,7 @@ static int hspi_transfer_one_message(struct spi_master *master, ...@@ -213,7 +213,7 @@ static int hspi_transfer_one_message(struct spi_master *master,
static int hspi_probe(struct platform_device *pdev) static int hspi_probe(struct platform_device *pdev)
{ {
struct resource *res; struct resource *res;
struct spi_master *master; struct spi_controller *ctlr;
struct hspi_priv *hspi; struct hspi_priv *hspi;
struct clk *clk; struct clk *clk;
int ret; int ret;
...@@ -225,8 +225,8 @@ static int hspi_probe(struct platform_device *pdev) ...@@ -225,8 +225,8 @@ static int hspi_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
} }
master = spi_alloc_master(&pdev->dev, sizeof(*hspi)); ctlr = spi_alloc_master(&pdev->dev, sizeof(*hspi));
if (!master) if (!ctlr)
return -ENOMEM; return -ENOMEM;
clk = clk_get(&pdev->dev, NULL); clk = clk_get(&pdev->dev, NULL);
...@@ -236,11 +236,11 @@ static int hspi_probe(struct platform_device *pdev) ...@@ -236,11 +236,11 @@ static int hspi_probe(struct platform_device *pdev)
goto error0; goto error0;
} }
hspi = spi_master_get_devdata(master); hspi = spi_controller_get_devdata(ctlr);
platform_set_drvdata(pdev, hspi); platform_set_drvdata(pdev, hspi);
/* init hspi */ /* init hspi */
hspi->master = master; hspi->ctlr = ctlr;
hspi->dev = &pdev->dev; hspi->dev = &pdev->dev;
hspi->clk = clk; hspi->clk = clk;
hspi->addr = devm_ioremap(hspi->dev, hspi->addr = devm_ioremap(hspi->dev,
...@@ -252,16 +252,16 @@ static int hspi_probe(struct platform_device *pdev) ...@@ -252,16 +252,16 @@ static int hspi_probe(struct platform_device *pdev)
pm_runtime_enable(&pdev->dev); pm_runtime_enable(&pdev->dev);
master->bus_num = pdev->id; ctlr->bus_num = pdev->id;
master->mode_bits = SPI_CPOL | SPI_CPHA; ctlr->mode_bits = SPI_CPOL | SPI_CPHA;
master->dev.of_node = pdev->dev.of_node; ctlr->dev.of_node = pdev->dev.of_node;
master->auto_runtime_pm = true; ctlr->auto_runtime_pm = true;
master->transfer_one_message = hspi_transfer_one_message; ctlr->transfer_one_message = hspi_transfer_one_message;
master->bits_per_word_mask = SPI_BPW_MASK(8); ctlr->bits_per_word_mask = SPI_BPW_MASK(8);
ret = devm_spi_register_master(&pdev->dev, master); ret = devm_spi_register_controller(&pdev->dev, ctlr);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "spi_register_master error.\n"); dev_err(&pdev->dev, "devm_spi_register_controller error.\n");
goto error2; goto error2;
} }
...@@ -272,7 +272,7 @@ static int hspi_probe(struct platform_device *pdev) ...@@ -272,7 +272,7 @@ static int hspi_probe(struct platform_device *pdev)
error1: error1:
clk_put(clk); clk_put(clk);
error0: error0:
spi_master_put(master); spi_controller_put(ctlr);
return ret; return ret;
} }
......
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