spi: stm32-qspi: Remove stm32_qspi_get_mode() unused parameter
struct stm32_qspi *qsp is no more used remove it. Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com> Link: https://lore.kernel.org/r/20220602092540.369604-2-patrice.chotard@foss.st.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
f2906aa863
commit
5945ff9057
|
@ -349,7 +349,7 @@ static int stm32_qspi_wait_poll_status(struct stm32_qspi *qspi,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int stm32_qspi_get_mode(struct stm32_qspi *qspi, u8 buswidth)
|
||||
static int stm32_qspi_get_mode(u8 buswidth)
|
||||
{
|
||||
if (buswidth == 4)
|
||||
return CCR_BUSWIDTH_4;
|
||||
|
@ -382,11 +382,11 @@ static int stm32_qspi_send(struct spi_mem *mem, const struct spi_mem_op *op)
|
|||
ccr = qspi->fmode;
|
||||
ccr |= FIELD_PREP(CCR_INST_MASK, op->cmd.opcode);
|
||||
ccr |= FIELD_PREP(CCR_IMODE_MASK,
|
||||
stm32_qspi_get_mode(qspi, op->cmd.buswidth));
|
||||
stm32_qspi_get_mode(op->cmd.buswidth));
|
||||
|
||||
if (op->addr.nbytes) {
|
||||
ccr |= FIELD_PREP(CCR_ADMODE_MASK,
|
||||
stm32_qspi_get_mode(qspi, op->addr.buswidth));
|
||||
stm32_qspi_get_mode(op->addr.buswidth));
|
||||
ccr |= FIELD_PREP(CCR_ADSIZE_MASK, op->addr.nbytes - 1);
|
||||
}
|
||||
|
||||
|
@ -396,7 +396,7 @@ static int stm32_qspi_send(struct spi_mem *mem, const struct spi_mem_op *op)
|
|||
|
||||
if (op->data.nbytes) {
|
||||
ccr |= FIELD_PREP(CCR_DMODE_MASK,
|
||||
stm32_qspi_get_mode(qspi, op->data.buswidth));
|
||||
stm32_qspi_get_mode(op->data.buswidth));
|
||||
}
|
||||
|
||||
writel_relaxed(ccr, qspi->io_base + QSPI_CCR);
|
||||
|
|
Loading…
Reference in New Issue