diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-07-10 17:49:30 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-07-11 15:12:56 +0200 |
commit | 82238d2cbd99ebd09dda48fb7c1c8802097da6a2 (patch) | |
tree | e10e4206c0cce9fb3ac3181ace5b1b8e4a16521a /drivers/spi/spi-atmel.c | |
parent | spi: Get rid of old SPI_MASTER_MUST_TX & SPI_MASTER_MUST_RX (diff) | |
download | linux-82238d2cbd99ebd09dda48fb7c1c8802097da6a2.tar.xz linux-82238d2cbd99ebd09dda48fb7c1c8802097da6a2.zip |
spi: Rename SPI_MASTER_GPIO_SS to SPI_CONTROLLER_GPIO_SS
Rename SPI_MASTER_GPIO_SS to SPI_CONTROLLER_GPIO_SS and
convert the users to SPI_CONTROLLER_GPIO_SS to follow
the new naming shema.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230710154932.68377-14-andriy.shevchenko@linux.intel.com
Reviewed-by: Serge Semin <fancer.lancer@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-atmel.c')
-rw-r--r-- | drivers/spi/spi-atmel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c index 0865993005b2..9674499ed0a6 100644 --- a/drivers/spi/spi-atmel.c +++ b/drivers/spi/spi-atmel.c @@ -1476,7 +1476,7 @@ static int atmel_spi_probe(struct platform_device *pdev) host->num_chipselect = 4; host->setup = atmel_spi_setup; host->flags = (SPI_CONTROLLER_MUST_RX | SPI_CONTROLLER_MUST_TX | - SPI_MASTER_GPIO_SS); + SPI_CONTROLLER_GPIO_SS); host->transfer_one = atmel_spi_one_transfer; host->set_cs = atmel_spi_set_cs; host->cleanup = atmel_spi_cleanup; |