]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
spi: fsl: Fix problem with multi message transfers
authorStefan Roese <sr@denx.de>
Fri, 31 Jan 2014 12:44:59 +0000 (13:44 +0100)
committerJiri Slaby <jslaby@suse.cz>
Mon, 26 Jan 2015 13:39:09 +0000 (14:39 +0100)
commit44189ec1996bf5c5dd402d21eb420f4e83e7dfb6
treee1f98777d16957d55c439c28b29962fd6bfd830b
parent0f069ee162db50519dbd032d4a2c41960419d6c7
spi: fsl: Fix problem with multi message transfers

commit 4302a59629f7a0bd70fd1605d2b558597517372a upstream.

When used via spidev with more than one messages to tranfer via
SPI_IOC_MESSAGE the current implementation would return with
-EINVAL, since bits_per_word and speed_hz are set in all
transfer structs. And in the 2nd loop status will stay at
-EINVAL as its not overwritten again via fsl_spi_setup_transfer().

This patch changes this behavious by first checking if one of
the messages uses different settings. If this is the case
the function will return with -EINVAL. If not, the messages
are transferred correctly.

Signed-off-by: Stefan Roese <sr@denx.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Cc: Esben Haabendal <esbenhaabendal@gmail.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/spi/spi-fsl-spi.c