Home
last modified time | relevance | path

Searched refs:SPI_BPW_RANGE_MASK (Results 1 – 21 of 21) sorted by relevance

/linux-4.4.14/drivers/spi/
Dspi-xtensa-xtfpga.c95 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 16); in xtfpga_spi_probe()
Dspi-clps711x.c139 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 8); in spi_clps711x_probe()
Dspi-altera.c215 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 16); in altera_spi_probe()
Dspi-ath79.c228 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in ath79_spi_probe()
Dspi-omap-uwire.c489 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 16); in uwire_probe()
Dspi-fsl-spi.c645 (SPI_BPW_RANGE_MASK(4, 16) | SPI_BPW_MASK(32)) & in fsl_spi_probe()
646 SPI_BPW_RANGE_MASK(1, mpc8xxx_spi->max_bits_per_word); in fsl_spi_probe()
Dspi-pxa2xx.c1502 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in pxa2xx_spi_probe()
1505 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in pxa2xx_spi_probe()
1514 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in pxa2xx_spi_probe()
Dspi-omap-100k.c378 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in omap1_spi100k_probe()
Dspi-gpio.c448 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in spi_gpio_probe()
Dspi-efm32.c348 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in efm32_spi_probe()
Dspi-coldfire-qspi.c416 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(8, 16); in mcfqspi_probe()
Dspi-ep93xx.c891 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in ep93xx_spi_probe()
Dspi-fsl-espi.c668 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in fsl_espi_probe()
Dspi-au1550.c747 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 24); in au1550_spi_probe()
Dspi-davinci.c1012 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 16); in davinci_spi_probe()
Dspi-qup.c821 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in spi_qup_probe()
Dspi-sh-msiof.c1236 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(8, 32); in sh_msiof_spi_probe()
Dspi-imx.c1113 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in spi_imx_probe()
Dspi-omap2-mcspi.c1372 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in omap2_mcspi_probe()
Dspi-atmel.c1535 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(8, 16); in atmel_spi_probe()
/linux-4.4.14/include/linux/spi/
Dspi.h414 #define SPI_BPW_RANGE_MASK(min, max) (SPI_BIT_MASK(max) - SPI_BIT_MASK(min - 1)) macro