diff mbox series

spi: spidev: fix missing octal defines

Message ID 20200619074345.4041673-1-vkoul@kernel.org (mailing list archive)
State New, archived
Headers show
Series spi: spidev: fix missing octal defines | expand

Commit Message

Vinod Koul June 19, 2020, 7:43 a.m. UTC
Commit 896fa735084e ("spi: spidev_test: Add support for Octal mode data
transfers") adds support for octal mode but failed to update userspace
header with octal defines causing build error for the spidev tool

spidev_test.c: In function ‘transfer’:
spidev_test.c:131:13: error: ‘SPI_TX_OCTAL’ undeclared (first use in this function); did you mean ‘SPI_TX_DUAL’?
  if (mode & SPI_TX_OCTAL)
...

Update the header with octal values.

Fixes: 896fa735084e ("spi: spidev_test: Add support for Octal mode data transfers")
Signed-off-by: Vinod Koul <vkoul@kernel.org>
---
 include/uapi/linux/spi/spidev.h | 2 ++
 1 file changed, 2 insertions(+)

Comments

Mark Brown June 19, 2020, 10:23 a.m. UTC | #1
On Fri, Jun 19, 2020 at 01:13:45PM +0530, Vinod Koul wrote:
> Commit 896fa735084e ("spi: spidev_test: Add support for Octal mode data
> transfers") adds support for octal mode but failed to update userspace
> header with octal defines causing build error for the spidev tool

This was already fixed.
diff mbox series

Patch

diff --git a/include/uapi/linux/spi/spidev.h b/include/uapi/linux/spi/spidev.h
index ee0f2460bff6..f0c95f5cc719 100644
--- a/include/uapi/linux/spi/spidev.h
+++ b/include/uapi/linux/spi/spidev.h
@@ -48,6 +48,8 @@ 
 #define SPI_TX_QUAD		0x200
 #define SPI_RX_DUAL		0x400
 #define SPI_RX_QUAD		0x800
+#define SPI_TX_OCTAL		0x2000
+#define SPI_RX_OCTAL		0x4000
 
 /*---------------------------------------------------------------------------*/