Commit b31e27a6 authored by Mike Frysinger's avatar Mike Frysinger Committed by Linus Torvalds

Blackfin SPI Driver: use the properl BIT_CTL_xxx defines

use the properl BIT_CTL_...  defines rather than the internal driv er
CFG_SPI_...  defines
Signed-off-by: default avatarMike Frysinger <vapier.adi@gmail.com>
Signed-off-by: default avatarBryan Wu <cooloney@kernel.org>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 40a2945b
......@@ -799,7 +799,7 @@ static void pump_transfers(unsigned long data)
/* start SPI transfer */
write_CTRL(drv_data,
(cr | CFG_SPI_DMAWRITE | BIT_CTL_ENABLE));
(cr | BIT_CTL_TIMOD_DMA_TX | BIT_CTL_ENABLE));
/* just return here, there can only be one transfer
* in this mode
......@@ -827,7 +827,7 @@ static void pump_transfers(unsigned long data)
dma_config |= WNR;
dma_start_addr = (unsigned long)drv_data->rx;
cr |= CFG_SPI_DMAREAD;
cr |= BIT_CTL_TIMOD_DMA_RX | BIT_CTL_SENDOPT;
} else if (drv_data->tx != NULL) {
dev_dbg(&drv_data->pdev->dev, "doing DMA out.\n");
......@@ -839,7 +839,7 @@ static void pump_transfers(unsigned long data)
drv_data->len_in_bytes));
dma_start_addr = (unsigned long)drv_data->tx;
cr |= CFG_SPI_DMAWRITE;
cr |= BIT_CTL_TIMOD_DMA_TX;
} else
BUG();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment