diff options
author | Han Xu <han.xu@nxp.com> | 2019-07-10 04:31:27 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-07-10 17:31:35 +0200 |
commit | d6b197a14863818a7ed7890e91f043fab49e8c60 (patch) | |
tree | 0211e4806358b013146d87d8b861037a42a5a2ac /drivers/spi | |
parent | spi: dt-bindings: spi-controller: remove unnecessary 'maxItems: 1' from reg (diff) | |
download | linux-d6b197a14863818a7ed7890e91f043fab49e8c60.tar.xz linux-d6b197a14863818a7ed7890e91f043fab49e8c60.zip |
spi: spi-fsl-qspi: change i.MX7D RX FIFO size
The RX FIFO should be 128 byte rather than 512 byte. It's a typo on
reference manual.
Signed-off-by: Han Xu <han.xu@nxp.com>
Link: https://lore.kernel.org/r/20190710023128.13115-3-han.xu@nxp.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-fsl-qspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-fsl-qspi.c b/drivers/spi/spi-fsl-qspi.c index 41a49b93ca60..448c00e4065b 100644 --- a/drivers/spi/spi-fsl-qspi.c +++ b/drivers/spi/spi-fsl-qspi.c @@ -206,7 +206,7 @@ static const struct fsl_qspi_devtype_data imx6sx_data = { }; static const struct fsl_qspi_devtype_data imx7d_data = { - .rxfifo = SZ_512, + .rxfifo = SZ_128, .txfifo = SZ_512, .ahb_buf_size = SZ_1K, .quirks = QUADSPI_QUIRK_TKT253890 | QUADSPI_QUIRK_4X_INT_CLK, |