[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-id: <1281461807-17408-2-git-send-email-sjur.brandeland@stericsson.com>
Date: Tue, 10 Aug 2010 19:36:47 +0200
From: sjur.brandeland@...ricsson.com
To: davem@...emloft.net
Cc: sjurbren@...il.com, netdev@...r.kernel.org,
Sjur Braendeland <sjur.brandeland@...ricsson.com>
Subject: [PATCH 2/2] caif-spi: Bugfix SPI_DATA_POS settings were inverted.
From: Sjur Braendeland <sjur.brandeland@...ricsson.com>
The setting of SPI_DATA_POS depending on CONFIG_CAIF_SPI_SYNC
where inverted.
Change-Id: I4886d1d69cc50557f516e05c40f649fed55384a2
Signed-off-by: Sjur Braendeland <sjur.brandeland@...ricsson.com>
---
drivers/net/caif/caif_spi_slave.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/caif/caif_spi_slave.c b/drivers/net/caif/caif_spi_slave.c
index 077ccf8..2111dbf 100644
--- a/drivers/net/caif/caif_spi_slave.c
+++ b/drivers/net/caif/caif_spi_slave.c
@@ -22,13 +22,13 @@
#include <net/caif/caif_spi.h>
#ifndef CONFIG_CAIF_SPI_SYNC
-#define SPI_DATA_POS SPI_CMD_SZ
+#define SPI_DATA_POS 0
static inline int forward_to_spi_cmd(struct cfspi *cfspi)
{
return cfspi->rx_cpck_len;
}
#else
-#define SPI_DATA_POS 0
+#define SPI_DATA_POS SPI_CMD_SZ
static inline int forward_to_spi_cmd(struct cfspi *cfspi)
{
return 0;
--
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists