Skip to content

Commit

Permalink
Blackfin SPI Driver: use the properl BIT_CTL_xxx defines
Browse files Browse the repository at this point in the history
use the properl BIT_CTL_...  defines rather than the internal driv er
CFG_SPI_...  defines

Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Mike Frysinger authored and Linus Torvalds committed Apr 7, 2009
1 parent 40a2945 commit b31e27a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/spi/spi_bfin5xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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");
Expand All @@ -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();
Expand Down

0 comments on commit b31e27a

Please sign in to comment.