Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 210631
b: refs/heads/master
c: 251ee47
h: refs/heads/master
i:
  210629: 00796d1
  210627: 6f9fae5
  210623: 5b2c273
v: v3
  • Loading branch information
Jassi Brar authored and Grant Likely committed Sep 8, 2010
1 parent 370506c commit 5a7d71e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e3e55ff5854655d8723ad8b307f02515aecc3df5
refs/heads/master: 251ee478f2c877a9a80362e094c542fbac7f5651
5 changes: 3 additions & 2 deletions trunk/drivers/spi/spi_s3c64xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,9 @@ static int s3c64xx_spi_map_mssg(struct s3c64xx_spi_driver_data *sdd,
list_for_each_entry(xfer, &msg->transfers, transfer_list) {

if (xfer->tx_buf != NULL) {
xfer->tx_dma = dma_map_single(dev, xfer->tx_buf,
xfer->len, DMA_TO_DEVICE);
xfer->tx_dma = dma_map_single(dev,
(void *)xfer->tx_buf, xfer->len,
DMA_TO_DEVICE);
if (dma_mapping_error(dev, xfer->tx_dma)) {
dev_err(dev, "dma_map_single Tx failed\n");
xfer->tx_dma = XFER_DMAADDR_INVALID;
Expand Down

0 comments on commit 5a7d71e

Please sign in to comment.