From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Cyrille Pitchen <cyrille.pitchen@atmel.com>,
gregkh@linuxfoundation.org, wenyou.yang@atmel.com,
ludovic.desroches@atmel.com, leilei.zhao@atmel.com,
voice.shen@atmel.com, josh.wu@atmel.com,
linux-serial@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/5] tty/serial: at91: use correct type for dma_sync_*_for_cpu() and dma_sync_*_for_device()
Date: Fri, 9 Jan 2015 16:13:59 +0100 [thread overview]
Message-ID: <54AFF037.1000004@atmel.com> (raw)
In-Reply-To: <830a2b33ab0226405dc310c8a6d43731bf4ca8f9.1418131298.git.cyrille.pitchen@atmel.com>
Le 09/12/2014 14:31, Cyrille Pitchen a écrit :
> dma_sync_*_for_cpu() and dma_sync_*_for_device() use 'enum dma_data_direction',
> not 'enum dma_transfer_direction'
>
> Signed-off-by: Cyrille Pitchen <cyrille.pitchen@atmel.com>
Sure:
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Here it's difficult to add a "stable" tag as the error was introduced by
several different patches.
Thanks.
> ---
> drivers/tty/serial/atmel_serial.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c
> index 4d848a2..756f567 100644
> --- a/drivers/tty/serial/atmel_serial.c
> +++ b/drivers/tty/serial/atmel_serial.c
> @@ -794,7 +794,7 @@ static void atmel_tx_dma(struct uart_port *port)
> return;
> }
>
> - dma_sync_sg_for_device(port->dev, sg, 1, DMA_MEM_TO_DEV);
> + dma_sync_sg_for_device(port->dev, sg, 1, DMA_TO_DEVICE);
>
> atmel_port->desc_tx = desc;
> desc->callback = atmel_complete_tx_dma;
> @@ -927,7 +927,7 @@ static void atmel_rx_from_dma(struct uart_port *port)
> dma_sync_sg_for_cpu(port->dev,
> &atmel_port->sg_rx,
> 1,
> - DMA_DEV_TO_MEM);
> + DMA_FROM_DEVICE);
>
> /*
> * ring->head points to the end of data already written by the DMA.
> @@ -974,7 +974,7 @@ static void atmel_rx_from_dma(struct uart_port *port)
> dma_sync_sg_for_device(port->dev,
> &atmel_port->sg_rx,
> 1,
> - DMA_DEV_TO_MEM);
> + DMA_FROM_DEVICE);
>
> /*
> * Drop the lock here since it might end up calling
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/5] tty/serial: at91: use correct type for dma_sync_*_for_cpu() and dma_sync_*_for_device()
Date: Fri, 9 Jan 2015 16:13:59 +0100 [thread overview]
Message-ID: <54AFF037.1000004@atmel.com> (raw)
In-Reply-To: <830a2b33ab0226405dc310c8a6d43731bf4ca8f9.1418131298.git.cyrille.pitchen@atmel.com>
Le 09/12/2014 14:31, Cyrille Pitchen a ?crit :
> dma_sync_*_for_cpu() and dma_sync_*_for_device() use 'enum dma_data_direction',
> not 'enum dma_transfer_direction'
>
> Signed-off-by: Cyrille Pitchen <cyrille.pitchen@atmel.com>
Sure:
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Here it's difficult to add a "stable" tag as the error was introduced by
several different patches.
Thanks.
> ---
> drivers/tty/serial/atmel_serial.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c
> index 4d848a2..756f567 100644
> --- a/drivers/tty/serial/atmel_serial.c
> +++ b/drivers/tty/serial/atmel_serial.c
> @@ -794,7 +794,7 @@ static void atmel_tx_dma(struct uart_port *port)
> return;
> }
>
> - dma_sync_sg_for_device(port->dev, sg, 1, DMA_MEM_TO_DEV);
> + dma_sync_sg_for_device(port->dev, sg, 1, DMA_TO_DEVICE);
>
> atmel_port->desc_tx = desc;
> desc->callback = atmel_complete_tx_dma;
> @@ -927,7 +927,7 @@ static void atmel_rx_from_dma(struct uart_port *port)
> dma_sync_sg_for_cpu(port->dev,
> &atmel_port->sg_rx,
> 1,
> - DMA_DEV_TO_MEM);
> + DMA_FROM_DEVICE);
>
> /*
> * ring->head points to the end of data already written by the DMA.
> @@ -974,7 +974,7 @@ static void atmel_rx_from_dma(struct uart_port *port)
> dma_sync_sg_for_device(port->dev,
> &atmel_port->sg_rx,
> 1,
> - DMA_DEV_TO_MEM);
> + DMA_FROM_DEVICE);
>
> /*
> * Drop the lock here since it might end up calling
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Cyrille Pitchen <cyrille.pitchen@atmel.com>,
<gregkh@linuxfoundation.org>, <wenyou.yang@atmel.com>,
<ludovic.desroches@atmel.com>, <leilei.zhao@atmel.com>,
<voice.shen@atmel.com>, <josh.wu@atmel.com>,
<linux-serial@vger.kernel.org>
Cc: <linux-kernel@vger.kernel.org>, <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 1/5] tty/serial: at91: use correct type for dma_sync_*_for_cpu() and dma_sync_*_for_device()
Date: Fri, 9 Jan 2015 16:13:59 +0100 [thread overview]
Message-ID: <54AFF037.1000004@atmel.com> (raw)
In-Reply-To: <830a2b33ab0226405dc310c8a6d43731bf4ca8f9.1418131298.git.cyrille.pitchen@atmel.com>
Le 09/12/2014 14:31, Cyrille Pitchen a écrit :
> dma_sync_*_for_cpu() and dma_sync_*_for_device() use 'enum dma_data_direction',
> not 'enum dma_transfer_direction'
>
> Signed-off-by: Cyrille Pitchen <cyrille.pitchen@atmel.com>
Sure:
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Here it's difficult to add a "stable" tag as the error was introduced by
several different patches.
Thanks.
> ---
> drivers/tty/serial/atmel_serial.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c
> index 4d848a2..756f567 100644
> --- a/drivers/tty/serial/atmel_serial.c
> +++ b/drivers/tty/serial/atmel_serial.c
> @@ -794,7 +794,7 @@ static void atmel_tx_dma(struct uart_port *port)
> return;
> }
>
> - dma_sync_sg_for_device(port->dev, sg, 1, DMA_MEM_TO_DEV);
> + dma_sync_sg_for_device(port->dev, sg, 1, DMA_TO_DEVICE);
>
> atmel_port->desc_tx = desc;
> desc->callback = atmel_complete_tx_dma;
> @@ -927,7 +927,7 @@ static void atmel_rx_from_dma(struct uart_port *port)
> dma_sync_sg_for_cpu(port->dev,
> &atmel_port->sg_rx,
> 1,
> - DMA_DEV_TO_MEM);
> + DMA_FROM_DEVICE);
>
> /*
> * ring->head points to the end of data already written by the DMA.
> @@ -974,7 +974,7 @@ static void atmel_rx_from_dma(struct uart_port *port)
> dma_sync_sg_for_device(port->dev,
> &atmel_port->sg_rx,
> 1,
> - DMA_DEV_TO_MEM);
> + DMA_FROM_DEVICE);
>
> /*
> * Drop the lock here since it might end up calling
>
--
Nicolas Ferre
next prev parent reply other threads:[~2015-01-09 15:13 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-09 13:31 [PATCH 0/5] tty/serial: at91: fix atmel_serial_probe(), dma_sync_* and the Hardware Handshaking support Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2014-12-09 13:31 ` [PATCH 1/5] tty/serial: at91: use correct type for dma_sync_*_for_cpu() and dma_sync_*_for_device() Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2015-01-09 15:13 ` Nicolas Ferre [this message]
2015-01-09 15:13 ` Nicolas Ferre
2015-01-09 15:13 ` Nicolas Ferre
2015-01-09 22:19 ` Greg KH
2015-01-09 22:19 ` Greg KH
2014-12-09 13:31 ` [PATCH 2/5] tty/serial: at91: enable peripheral clock before accessing I/O registers Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2015-01-09 15:12 ` Nicolas Ferre
2015-01-09 15:12 ` Nicolas Ferre
2015-01-09 15:12 ` Nicolas Ferre
2014-12-09 13:31 ` [PATCH 3/5] tty/serial: at91: fix error handling in atmel_serial_probe() Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2015-01-09 15:28 ` Nicolas Ferre
2015-01-09 15:28 ` Nicolas Ferre
2015-01-09 15:28 ` Nicolas Ferre
2014-12-09 13:31 ` [PATCH 4/5] tty/serial: at91: fix RTS line management when hardware handshake is enabled Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2015-01-09 15:40 ` Nicolas Ferre
2015-01-09 15:40 ` Nicolas Ferre
2015-01-09 15:40 ` Nicolas Ferre
2014-12-09 13:31 ` [PATCH 5/5] tty/serial: at91: fix typo and indentation Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2014-12-09 13:31 ` Cyrille Pitchen
2015-01-09 15:41 ` Nicolas Ferre
2015-01-09 15:41 ` Nicolas Ferre
2015-01-09 15:41 ` Nicolas Ferre
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54AFF037.1000004@atmel.com \
--to=nicolas.ferre@atmel.com \
--cc=cyrille.pitchen@atmel.com \
--cc=gregkh@linuxfoundation.org \
--cc=josh.wu@atmel.com \
--cc=leilei.zhao@atmel.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=ludovic.desroches@atmel.com \
--cc=voice.shen@atmel.com \
--cc=wenyou.yang@atmel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.