diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2015-01-28 07:23:43 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-01-28 14:42:42 -0500 |
commit | 5b74d7a3b888fd3db6dce77eb11b3d55b64f6833 (patch) | |
tree | 5ecaf023a3b8acb1210224ac663c2275e29e866d | |
parent | a87cbca0acef0b1f57e4b216f1965468ee521cd3 (diff) |
spi/xilinx: Use cached value of register
The control register has not changed since the previous access.
Therefore we can use the cached value and safe one bus access.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-xilinx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-xilinx.c b/drivers/spi/spi-xilinx.c index a0f7c9d4a349..12b311ed9bfa 100644 --- a/drivers/spi/spi-xilinx.c +++ b/drivers/spi/spi-xilinx.c | |||
@@ -271,7 +271,6 @@ static int xilinx_spi_txrx_bufs(struct spi_device *spi, struct spi_transfer *t) | |||
271 | * transmitter while the Isr refills the transmit register/FIFO, | 271 | * transmitter while the Isr refills the transmit register/FIFO, |
272 | * or make sure it is stopped if we're done. | 272 | * or make sure it is stopped if we're done. |
273 | */ | 273 | */ |
274 | cr = xspi->read_fn(xspi->regs + XSPI_CR_OFFSET); | ||
275 | xspi->write_fn(cr | XSPI_CR_TRANS_INHIBIT, | 274 | xspi->write_fn(cr | XSPI_CR_TRANS_INHIBIT, |
276 | xspi->regs + XSPI_CR_OFFSET); | 275 | xspi->regs + XSPI_CR_OFFSET); |
277 | 276 | ||