• Arnd Bergmann's avatar
    spi: imx: fix little-endian build · 5904c9d3
    Arnd Bergmann authored
    The newly added dynamic burst code produces a harmless warning
    on big-endian configurations:
    
    drivers/spi/spi-imx.c: In function 'spi_imx_buf_rx_swap_u32':
    drivers/spi/spi-imx.c:284:15: error: unused variable 'bytes_per_word' [-Werror=unused-variable]
      unsigned int bytes_per_word;
                   ^~~~~~~~~~~~~~
    drivers/spi/spi-imx.c: In function 'spi_imx_buf_tx_swap_u32':
    drivers/spi/spi-imx.c:319:15: error: unused variable 'bytes_per_word' [-Werror=unused-variable]
      unsigned int bytes_per_word;
    
    This adds another #ifdef around the variable declaration matching
    the one on the use.
    
    Fixes: 1673c81d ("spi: imx: dynamic burst length adjust for PIO mode")
    Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
    Signed-off-by: default avatarMark Brown <broonie@kernel.org>
    5904c9d3
spi-imx.c 39 KB