[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1318570705-17595-11-git-send-email-vinod.koul@intel.com>
Date: Fri, 14 Oct 2011 11:08:25 +0530
From: Vinod Koul <vinod.koul@...el.com>
To: dan.j.williams@...el.com
Cc: linux-kernel@...r.kernel.org, jaswinder.singh@...aro.org,
21cnbao@...il.com, rmk@....linux.org.uk,
Vinod Koul <vinod.koul@...ux.intel.com>,
"David S. Miller" <davem@...emloft.net>,
Samuel Ortiz <sameo@...ux.intel.com>
Subject: [PATCH 10/10] net-ks8842: move to dma_transfer_direction
From: Vinod Koul <vinod.koul@...ux.intel.com>
Signed-off-by: Vinod Koul <vinod.koul@...ux.intel.com>
Cc: David S. Miller <davem@...emloft.net>
Cc: Samuel Ortiz <sameo@...ux.intel.com>
---
drivers/net/ks8842.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ks8842.c b/drivers/net/ks8842.c
index 4a6ae05..7ca0640 100644
--- a/drivers/net/ks8842.c
+++ b/drivers/net/ks8842.c
@@ -459,7 +459,7 @@ static int ks8842_tx_frame_dma(struct sk_buff *skb, struct net_device *netdev)
sg_dma_len(&ctl->sg) += 4 - sg_dma_len(&ctl->sg) % 4;
ctl->adesc = ctl->chan->device->device_prep_slave_sg(ctl->chan,
- &ctl->sg, 1, DMA_TO_DEVICE,
+ &ctl->sg, 1, MEM_TO_DEV,
DMA_PREP_INTERRUPT | DMA_COMPL_SKIP_SRC_UNMAP);
if (!ctl->adesc)
return NETDEV_TX_BUSY;
@@ -571,7 +571,7 @@ static int __ks8842_start_new_rx_dma(struct net_device *netdev)
sg_dma_len(sg) = DMA_BUFFER_SIZE;
ctl->adesc = ctl->chan->device->device_prep_slave_sg(ctl->chan,
- sg, 1, DMA_FROM_DEVICE,
+ sg, 1, DEV_TO_MEM,
DMA_PREP_INTERRUPT | DMA_COMPL_SKIP_SRC_UNMAP);
if (!ctl->adesc)
--
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists