diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2019-09-19 22:25:02 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-10-01 12:33:58 +0100 |
commit | 539ff2488af87f25f2c090fd74ced55bd966e5a9 (patch) | |
tree | 9efd25cf8b8b6a7c861a0a010d8181fe91335b45 | |
parent | e61bb114d41ddf6ae5bf05a0109fc13116550c7d (diff) |
spi: mxic: Ensure width is respected in spi-mem operations
Make use of a core helper to ensure the desired width is respected
when calling spi-mem operators.
Suggested-by: Boris Brezillon <bbrezillon@kernel.org>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/r/20190919202504.9619-2-miquel.raynal@bootlin.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-mxic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-mxic.c b/drivers/spi/spi-mxic.c index f48563c09b97..409bfa163647 100644 --- a/drivers/spi/spi-mxic.c +++ b/drivers/spi/spi-mxic.c @@ -346,7 +346,7 @@ static bool mxic_spi_mem_supports_op(struct spi_mem *mem, if (op->addr.nbytes > 7) return false; - return true; + return spi_mem_default_supports_op(mem, op); } static int mxic_spi_mem_exec_op(struct spi_mem *mem, |