mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
spi: pxa2xx: Remove if statement that is always true in pump_transfers()
This is continuation to previous commit by separating unindentation from variable removal done in previous commit. As said SPI core have validated both the speed_hz and bits_per_word and the if statement here evaluates always to true. Remove the test and unindent the code block accordingly. While at it remove also needless "cr0 = chip->cr0" as cr0 will be overwritten anyway and fix block comment style. Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
4f1474b3b7
commit
196b0e2cf2
@ -918,46 +918,44 @@ static void pump_transfers(unsigned long data)
|
||||
drv_data->read = drv_data->rx ? chip->read : null_reader;
|
||||
|
||||
/* Change speed and bit per word on a per transfer */
|
||||
cr0 = chip->cr0;
|
||||
if (transfer->speed_hz || transfer->bits_per_word) {
|
||||
bits = transfer->bits_per_word;
|
||||
speed = transfer->speed_hz;
|
||||
|
||||
bits = transfer->bits_per_word;
|
||||
speed = transfer->speed_hz;
|
||||
clk_div = pxa2xx_ssp_get_clk_div(drv_data, chip, speed);
|
||||
|
||||
clk_div = pxa2xx_ssp_get_clk_div(drv_data, chip, speed);
|
||||
|
||||
if (bits <= 8) {
|
||||
drv_data->n_bytes = 1;
|
||||
drv_data->read = drv_data->read != null_reader ?
|
||||
u8_reader : null_reader;
|
||||
drv_data->write = drv_data->write != null_writer ?
|
||||
u8_writer : null_writer;
|
||||
} else if (bits <= 16) {
|
||||
drv_data->n_bytes = 2;
|
||||
drv_data->read = drv_data->read != null_reader ?
|
||||
u16_reader : null_reader;
|
||||
drv_data->write = drv_data->write != null_writer ?
|
||||
u16_writer : null_writer;
|
||||
} else if (bits <= 32) {
|
||||
drv_data->n_bytes = 4;
|
||||
drv_data->read = drv_data->read != null_reader ?
|
||||
u32_reader : null_reader;
|
||||
drv_data->write = drv_data->write != null_writer ?
|
||||
u32_writer : null_writer;
|
||||
}
|
||||
/* if bits/word is changed in dma mode, then must check the
|
||||
* thresholds and burst also */
|
||||
if (chip->enable_dma) {
|
||||
if (pxa2xx_spi_set_dma_burst_and_threshold(chip,
|
||||
message->spi,
|
||||
bits, &dma_burst,
|
||||
&dma_thresh))
|
||||
dev_warn_ratelimited(&message->spi->dev,
|
||||
"pump_transfers: DMA burst size reduced to match bits_per_word\n");
|
||||
}
|
||||
|
||||
cr0 = pxa2xx_configure_sscr0(drv_data, clk_div, bits);
|
||||
if (bits <= 8) {
|
||||
drv_data->n_bytes = 1;
|
||||
drv_data->read = drv_data->read != null_reader ?
|
||||
u8_reader : null_reader;
|
||||
drv_data->write = drv_data->write != null_writer ?
|
||||
u8_writer : null_writer;
|
||||
} else if (bits <= 16) {
|
||||
drv_data->n_bytes = 2;
|
||||
drv_data->read = drv_data->read != null_reader ?
|
||||
u16_reader : null_reader;
|
||||
drv_data->write = drv_data->write != null_writer ?
|
||||
u16_writer : null_writer;
|
||||
} else if (bits <= 32) {
|
||||
drv_data->n_bytes = 4;
|
||||
drv_data->read = drv_data->read != null_reader ?
|
||||
u32_reader : null_reader;
|
||||
drv_data->write = drv_data->write != null_writer ?
|
||||
u32_writer : null_writer;
|
||||
}
|
||||
/*
|
||||
* if bits/word is changed in dma mode, then must check the
|
||||
* thresholds and burst also
|
||||
*/
|
||||
if (chip->enable_dma) {
|
||||
if (pxa2xx_spi_set_dma_burst_and_threshold(chip,
|
||||
message->spi,
|
||||
bits, &dma_burst,
|
||||
&dma_thresh))
|
||||
dev_warn_ratelimited(&message->spi->dev,
|
||||
"pump_transfers: DMA burst size reduced to match bits_per_word\n");
|
||||
}
|
||||
|
||||
cr0 = pxa2xx_configure_sscr0(drv_data, clk_div, bits);
|
||||
|
||||
message->state = RUNNING_STATE;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user