spi: pxa2xx: Use predefined mask when programming FIFO thresholds
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 17 May 2021 14:03:51 +0000 (17:03 +0300)
committerMark Brown <broonie@kernel.org>
Tue, 18 May 2021 13:05:37 +0000 (14:05 +0100)
The predefined mask for threshold modification can be used
in case of Intel Merrifield SPI. Replace open-coded value
with predefined mask when programming FIFO thresholds.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20210517140351.901-10-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-pxa2xx.c

index 94b1585de203b88cbe8492f23bcb33fef644c9ea..bdf9a283efc3190feb05c8abbee92845e11ed44f 100644 (file)
@@ -1083,12 +1083,13 @@ static int pxa2xx_spi_transfer_one(struct spi_controller *controller,
        }
 
        if (is_mrfld_ssp(drv_data)) {
+               u32 mask = SFIFOTT_RFT | SFIFOTT_TFT;
                u32 thresh = 0;
 
                thresh |= SFIFOTT_RxThresh(chip->lpss_rx_threshold);
                thresh |= SFIFOTT_TxThresh(chip->lpss_tx_threshold);
 
-               pxa2xx_spi_update(drv_data, SFIFOTT, 0xffffffff, thresh);
+               pxa2xx_spi_update(drv_data, SFIFOTT, mask, thresh);
        }
 
        if (is_quark_x1000_ssp(drv_data))