diff options
author | Mark Brown <broonie@kernel.org> | 2020-05-25 16:31:20 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-05-26 19:44:54 +0300 |
commit | c373643b8688836c1627a805875994fe0012fc17 (patch) | |
tree | 798098c804ca3d4a110677031c6dbb798db1b351 /drivers/spi | |
parent | aee67fe879e5030a2f5e1d9af3cb5b2a1027e78a (diff) | |
download | linux-c373643b8688836c1627a805875994fe0012fc17.tar.xz |
spi: Remove note about transfer limit for spi_write_then_read()
Originally spi_write_then_read() used a fixed statically allocated
buffer which limited the maximum message size it could handle. This
restriction was removed a while ago so that we could dynamically
allocate a buffer if required but the kerneldoc was not updated to
reflect this, do so.
Reported-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20200525133120.57273-1-broonie@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 9d0b3c292e1e..8158e281f354 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -3858,8 +3858,7 @@ static u8 *buf; * is zero for success, else a negative errno status code. * This call may only be used from a context that may sleep. * - * Parameters to this routine are always copied using a small buffer; - * portable code should never use this for more than 32 bytes. + * Parameters to this routine are always copied using a small buffer. * Performance-sensitive or bulk transfer code should instead use * spi_{async,sync}() calls with dma-safe buffers. * |