mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 06:04:14 +08:00
spi: spidev: Restore all SPI mode flags on ioctl failure
In commit f477b7fb13
("spi: DUAL and QUAD
support"), spi_device.mode was enlarged from 8 to 16 bits.
However, the spidev code still only saved 8 bits of data. If a spidev
SPI_IOC_WR_MODE or SPI_IOC_WR_LSB_FIRST request failed, only the lower 8
bits of the SPI mode were restored, inadvertently clearing the upper 8
bits, possibly disabling Quad or Dual SPI transfers for the device.
Save up to 32 bits to fix this.
For SPI_IOC_WR_MODE this is probably not so important, as it doesn't allow
setting Quad or Dual mode anyway, but SPI_IOC_WR_LSB_FIRST is used to just
set or clear a single bit.
Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
925d16a209
commit
e6456186ca
@ -374,7 +374,7 @@ spidev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
|||||||
case SPI_IOC_WR_MODE:
|
case SPI_IOC_WR_MODE:
|
||||||
retval = __get_user(tmp, (u8 __user *)arg);
|
retval = __get_user(tmp, (u8 __user *)arg);
|
||||||
if (retval == 0) {
|
if (retval == 0) {
|
||||||
u8 save = spi->mode;
|
u32 save = spi->mode;
|
||||||
|
|
||||||
if (tmp & ~SPI_MODE_MASK) {
|
if (tmp & ~SPI_MODE_MASK) {
|
||||||
retval = -EINVAL;
|
retval = -EINVAL;
|
||||||
@ -393,7 +393,7 @@ spidev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
|||||||
case SPI_IOC_WR_LSB_FIRST:
|
case SPI_IOC_WR_LSB_FIRST:
|
||||||
retval = __get_user(tmp, (__u8 __user *)arg);
|
retval = __get_user(tmp, (__u8 __user *)arg);
|
||||||
if (retval == 0) {
|
if (retval == 0) {
|
||||||
u8 save = spi->mode;
|
u32 save = spi->mode;
|
||||||
|
|
||||||
if (tmp)
|
if (tmp)
|
||||||
spi->mode |= SPI_LSB_FIRST;
|
spi->mode |= SPI_LSB_FIRST;
|
||||||
|
Loading…
Reference in New Issue
Block a user