* [PATCH 03/05] serial: sh-sci: Use sg_dma_len() and sg_dma_address()
@ 2010-03-19 4:47 Magnus Damm
2010-03-19 7:37 ` Guennadi Liakhovetski
0 siblings, 1 reply; 2+ messages in thread
From: Magnus Damm @ 2010-03-19 4:47 UTC (permalink / raw)
To: linux-sh
From: Magnus Damm <damm@opensource.se>
Convert the dmaengine code in sh-sci.c from
directly accessing the struct scatterlist members
length, dma_length and dma_address to using the
macros sg_dma_len() and sg_dma_address().
Makes the code build for ARM.
Signed-off-by: Magnus Damm <damm@opensource.se>
---
drivers/serial/sh-sci.c | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
--- 0003/drivers/serial/sh-sci.c
+++ work/drivers/serial/sh-sci.c 2010-03-18 23:21:13.000000000 +0900
@@ -917,10 +917,10 @@ static void sci_dma_tx_complete(void *ar
spin_lock_irqsave(&port->lock, flags);
- xmit->tail += s->sg_tx.length;
+ xmit->tail += sg_dma_len(&s->sg_tx);
xmit->tail &= UART_XMIT_SIZE - 1;
- port->icount.tx += s->sg_tx.length;
+ port->icount.tx += sg_dma_len(&s->sg_tx);
async_tx_ack(s->desc_tx);
s->cookie_tx = -EINVAL;
@@ -1135,14 +1135,13 @@ static void work_fn_tx(struct work_struc
*/
spin_lock_irq(&port->lock);
sg->offset = xmit->tail & (UART_XMIT_SIZE - 1);
- sg->dma_address = (sg_dma_address(sg) & ~(UART_XMIT_SIZE - 1)) +
+ sg_dma_address(sg) = (sg_dma_address(sg) & ~(UART_XMIT_SIZE - 1)) +
sg->offset;
- sg->length = min((int)CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE),
+ sg_dma_len(sg) = min((int)CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE),
CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE));
- sg->dma_length = sg->length;
spin_unlock_irq(&port->lock);
- BUG_ON(!sg->length);
+ BUG_ON(!sg_dma_len(sg));
desc = chan->device->device_prep_slave_sg(chan,
sg, s->sg_len_tx, DMA_TO_DEVICE,
@@ -1343,8 +1342,7 @@ static void sci_request_dma(struct uart_
sg_init_table(sg, 1);
sg_set_page(sg, virt_to_page(buf[i]), s->buf_len_rx,
(int)buf[i] & ~PAGE_MASK);
- sg->dma_address = dma[i];
- sg->dma_length = sg->length;
+ sg_dma_address(sg) = dma[i];
}
INIT_WORK(&s->work_rx, work_fn_rx);
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 03/05] serial: sh-sci: Use sg_dma_len() and sg_dma_address()
2010-03-19 4:47 [PATCH 03/05] serial: sh-sci: Use sg_dma_len() and sg_dma_address() Magnus Damm
@ 2010-03-19 7:37 ` Guennadi Liakhovetski
0 siblings, 0 replies; 2+ messages in thread
From: Guennadi Liakhovetski @ 2010-03-19 7:37 UTC (permalink / raw)
To: linux-sh
On Fri, 19 Mar 2010, Magnus Damm wrote:
> From: Magnus Damm <damm@opensource.se>
>
> Convert the dmaengine code in sh-sci.c from
> directly accessing the struct scatterlist members
> length, dma_length and dma_address to using the
> macros sg_dma_len() and sg_dma_address().
>
> Makes the code build for ARM.
>
> Signed-off-by: Magnus Damm <damm@opensource.se>
Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-03-19 7:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-19 4:47 [PATCH 03/05] serial: sh-sci: Use sg_dma_len() and sg_dma_address() Magnus Damm
2010-03-19 7:37 ` Guennadi Liakhovetski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox