Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1214560 > unrolled thread

[PATCH] spi: mediatek: fix SPI_CMD_PAUSE_IE macro error

Started byLeilk Liu <leilk.liu@mediatek.com>
First post2015-08-27 15:10 +0200
Last post2015-08-27 15:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] spi: mediatek: fix SPI_CMD_PAUSE_IE macro error Leilk Liu <leilk.liu@mediatek.com> - 2015-08-27 15:10 +0200

#1214560 — [PATCH] spi: mediatek: fix SPI_CMD_PAUSE_IE macro error

FromLeilk Liu <leilk.liu@mediatek.com>
Date2015-08-27 15:10 +0200
Subject[PATCH] spi: mediatek: fix SPI_CMD_PAUSE_IE macro error
Message-ID<q256i-5kI-33@gated-at.bofh.it>
enable pause interrupt should use SPI_CMD_PAUSE_IE MACRO,
so fix it.

Signed-off-by: Leilk Liu <leilk.liu@mediatek.com>
---
 drivers/spi/spi-mt65xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi-mt65xx.c b/drivers/spi/spi-mt65xx.c
index eaadc7e..d882261 100644
--- a/drivers/spi/spi-mt65xx.c
+++ b/drivers/spi/spi-mt65xx.c
@@ -158,7 +158,7 @@ static void mtk_spi_config(struct mtk_spi *mdata,
 #endif
 
 	/* set finish and pause interrupt always enable */
-	reg_val |= SPI_CMD_FINISH_IE | SPI_CMD_PAUSE_EN;
+	reg_val |= SPI_CMD_FINISH_IE | SPI_CMD_PAUSE_IE;
 
 	/* disable dma mode */
 	reg_val &= ~(SPI_CMD_TX_DMA | SPI_CMD_RX_DMA);
-- 
1.8.1.1.dirty

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web