diff options
author | 2023-07-12 12:44:34 +0100 | |
---|---|---|
committer | 2023-07-12 12:44:34 +0100 | |
commit | 64a7b0e08143cb68e589b8c47ee3e04d9ffff0bc (patch) | |
tree | d8bf85fbd70aa93895af5b2d0b76e532ce753d7d /drivers/spi/spi-stm32.c | |
parent | Allwinner R329/D1/R528/T113s Dual/Quad SPI modes (diff) | |
parent | spi: Fix spelling typos and acronyms capitalization (diff) | |
download | linux-rng-64a7b0e08143cb68e589b8c47ee3e04d9ffff0bc.tar.xz linux-rng-64a7b0e08143cb68e589b8c47ee3e04d9ffff0bc.zip |
spi: Header and core clean up and refactoring
Merge series from Andy Shevchenko <andriy.shevchenko@linux.intel.com>:
Various cleanups and refactorings of the SPI header and core parts
united in a single series. It also touches drivers under SPI subsystem
folder on the pure renaming purposes of some constants.
No functional change intended.
Diffstat (limited to 'drivers/spi/spi-stm32.c')
-rw-r--r-- | drivers/spi/spi-stm32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-stm32.c b/drivers/spi/spi-stm32.c index 536d89e044cf..8cf7b41481b2 100644 --- a/drivers/spi/spi-stm32.c +++ b/drivers/spi/spi-stm32.c @@ -1753,7 +1753,7 @@ static const struct stm32_spi_cfg stm32f4_spi_cfg = { .baud_rate_div_max = STM32F4_SPI_BR_DIV_MAX, .has_fifo = false, .has_device_mode = false, - .flags = SPI_MASTER_MUST_TX, + .flags = SPI_CONTROLLER_MUST_TX, }; static const struct stm32_spi_cfg stm32h7_spi_cfg = { |