diff options
| author | Andy Shevchenko <[email protected]> | 2021-05-10 13:12:17 +0000 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2021-05-11 14:42:52 +0000 |
| commit | 038b9de42269f33aca3e3741214c863a4e9328d0 (patch) | |
| tree | a63fb43f0bd242d6dcf242544f315a767e0dccff /drivers/spi/spi-uniphier.c | |
| parent | spi: ppc4xx: Use SPI_MODE_X_MASK (diff) | |
| download | kernel-038b9de42269f33aca3e3741214c863a4e9328d0.tar.gz kernel-038b9de42269f33aca3e3741214c863a4e9328d0.zip | |
spi: uniphier: 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]>
Diffstat (limited to 'drivers/spi/spi-uniphier.c')
| -rw-r--r-- | drivers/spi/spi-uniphier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-uniphier.c b/drivers/spi/spi-uniphier.c index 6a9ef8ee3cc9..8900e51e1a1c 100644 --- a/drivers/spi/spi-uniphier.c +++ b/drivers/spi/spi-uniphier.c @@ -142,7 +142,7 @@ static void uniphier_spi_set_mode(struct spi_device *spi) * FSTRT start frame timing * 0: rising edge of clock, 1: falling edge of clock */ - switch (spi->mode & (SPI_CPOL | SPI_CPHA)) { + switch (spi->mode & SPI_MODE_X_MASK) { case SPI_MODE_0: /* CKPHS=1, CKINIT=0, CKDLY=1, FSTRT=0 */ val1 = SSI_CKS_CKPHS | SSI_CKS_CKDLY; |
