]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mtd: dataflash: Follow renaming of SPI "master" to "controller"
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Wed, 7 Feb 2024 18:40:26 +0000 (19:40 +0100)
committerMark Brown <broonie@kernel.org>
Thu, 8 Feb 2024 11:54:44 +0000 (11:54 +0000)
In commit 8caab75fd2c2 ("spi: Generalize SPI "master" to "controller"")
some functions and struct members were renamed. To not break all drivers
compatibility macros were provided.

To be able to remove these compatibility macros push the renaming into
this driver.

Acked-by: Miquel Raynal <miquel.raynal@bootlin.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/38bf50b391c117621e406fa8cd00c4daef78615c.1707324794.git.u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/mtd/devices/mtd_dataflash.c

index 0c1b9330361809d59a3ee534004ef537bc6c40e0..ec52277e3dd51d9e5e02d47e385270c5612bc7d6 100644 (file)
@@ -638,7 +638,7 @@ static int add_dataflash_otp(struct spi_device *spi, char *name, int nr_pages,
 
        /* name must be usable with cmdlinepart */
        sprintf(priv->name, "spi%d.%d-%s",
-                       spi->master->bus_num, spi_get_chipselect(spi, 0),
+                       spi->controller->bus_num, spi_get_chipselect(spi, 0),
                        name);
 
        device = &priv->mtd;