mirror of https://gitee.com/openkylin/linux.git
spi: spidev: Use SPI_MODE_X_MASK
Use SPI_MODE_X_MASK instead of open coded variant. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20210510131217.49357-2-andriy.shevchenko@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
40b82c2d9a
commit
dd507b5ec7
|
@ -59,7 +59,7 @@ static DECLARE_BITMAP(minors, N_SPI_MINORS);
|
|||
*
|
||||
* REVISIT should changing those flags be privileged?
|
||||
*/
|
||||
#define SPI_MODE_MASK (SPI_CPHA | SPI_CPOL | SPI_CS_HIGH \
|
||||
#define SPI_MODE_MASK (SPI_MODE_X_MASK | SPI_CS_HIGH \
|
||||
| SPI_LSB_FIRST | SPI_3WIRE | SPI_LOOP \
|
||||
| SPI_NO_CS | SPI_READY | SPI_TX_DUAL \
|
||||
| SPI_TX_QUAD | SPI_TX_OCTAL | SPI_RX_DUAL \
|
||||
|
|
Loading…
Reference in New Issue