diff options
author | Andy Shevchenko <[email protected]> | 2021-05-10 16:12:16 +0300 |
---|---|---|
committer | Mark Brown <[email protected]> | 2021-05-11 15:42:51 +0100 |
commit | 4ccf05579b9d0f15443a0edc860e2be7472ccfc1 (patch) | |
tree | 3c7ae8c2d1416e720f18a75648151a1304bec3f1 | |
parent | fdb217a38808e041f6eca8c550f1b5981e401a45 (diff) |
spi: ppc4xx: Use SPI_MODE_X_MASK
Use SPI_MODE_X_MASK instead of open coded variant.
Signed-off-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/spi/spi-ppc4xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-ppc4xx.c b/drivers/spi/spi-ppc4xx.c index 76874a7cca9b..59d201acbb39 100644 --- a/drivers/spi/spi-ppc4xx.c +++ b/drivers/spi/spi-ppc4xx.c @@ -235,7 +235,7 @@ static int spi_ppc4xx_setup(struct spi_device *spi) */ cs->mode = SPI_PPC4XX_MODE_SPE; - switch (spi->mode & (SPI_CPHA | SPI_CPOL)) { + switch (spi->mode & SPI_MODE_X_MASK) { case SPI_MODE_0: cs->mode |= SPI_CLK_MODE0; break; |