diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-07-10 17:49:29 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-07-11 14:41:25 +0200 |
commit | 90366cd60133a9f5b6a2f31360367c658585e125 (patch) | |
tree | 14129d0d4b9fca7c0c728a2c6ac41c763ec0fcb8 /drivers/spi/spi-pci1xxxx.c | |
parent | spi: Get rid of old SPI_MASTER_NO_TX & SPI_MASTER_NO_RX (diff) | |
download | linux-90366cd60133a9f5b6a2f31360367c658585e125.tar.xz linux-90366cd60133a9f5b6a2f31360367c658585e125.zip |
spi: Get rid of old SPI_MASTER_MUST_TX & SPI_MASTER_MUST_RX
Convert the users from SPI_MASTER_MUST_TX and/or SPI_MASTER_MUST_RX
to SPI_CONTROLLER_MUST_TX and/or SPI_CONTROLLER_MUST_RX respectively
and kill the not used anymore definitions.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230710154932.68377-13-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-pci1xxxx.c')
-rw-r--r-- | drivers/spi/spi-pci1xxxx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-pci1xxxx.c b/drivers/spi/spi-pci1xxxx.c index 4445d82409d6..d23c42839da1 100644 --- a/drivers/spi/spi-pci1xxxx.c +++ b/drivers/spi/spi-pci1xxxx.c @@ -365,7 +365,7 @@ static int pci1xxxx_spi_probe(struct pci_dev *pdev, const struct pci_device_id * spi_host->bits_per_word_mask = SPI_BPW_MASK(8); spi_host->max_speed_hz = PCI1XXXX_SPI_MAX_CLOCK_HZ; spi_host->min_speed_hz = PCI1XXXX_SPI_MIN_CLOCK_HZ; - spi_host->flags = SPI_MASTER_MUST_TX; + spi_host->flags = SPI_CONTROLLER_MUST_TX; spi_master_set_devdata(spi_host, spi_sub_ptr); ret = devm_spi_register_master(dev, spi_host); if (ret) |