From: Lars-Peter Clausen <lars@metafoo.de>
To: Lee Jones <lee.jones@linaro.org>
Cc: linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linus.walleij@linaro.org,
Mark Brown <broonie@kernel.org>,
alsa-devel@alsa-project.org
Subject: Re: [alsa-devel] [PATCH 08/13] ASoC: generic-dmaengine-pcm: Clear slave_config memory
Date: Wed, 06 Nov 2013 12:55:35 +0100 [thread overview]
Message-ID: <527A2E37.2040100@metafoo.de> (raw)
In-Reply-To: <1383732985-18928-9-git-send-email-lee.jones@linaro.org>
On 11/06/2013 11:16 AM, Lee Jones wrote:
> We currently assume that the DMA Slave Config will be fully populated
> by the platform, however some DMA Engines make decisions based on zero
> (default) flags such as DMA_SLAVE_BUSWIDTH_UNDEFINED and as this is a
> static declaration we need to memset it to clear the data area.
>
> Cc: alsa-devel@alsa-project.org
> Cc: Mark Brown <broonie@kernel.org>
> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Thanks.
> ---
> sound/soc/soc-generic-dmaengine-pcm.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/sound/soc/soc-generic-dmaengine-pcm.c b/sound/soc/soc-generic-dmaengine-pcm.c
> index ee07903..6ad4c7a 100644
> --- a/sound/soc/soc-generic-dmaengine-pcm.c
> +++ b/sound/soc/soc-generic-dmaengine-pcm.c
> @@ -90,6 +90,8 @@ static int dmaengine_pcm_hw_params(struct snd_pcm_substream *substream,
> struct dma_slave_config slave_config;
> int ret;
>
> + memset(&slave_config, 0, sizeof(slave_config));
> +
> if (!pcm->config)
> prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config;
> else
>
WARNING: multiple messages have this Message-ID (diff)
From: lars@metafoo.de (Lars-Peter Clausen)
To: linux-arm-kernel@lists.infradead.org
Subject: [alsa-devel] [PATCH 08/13] ASoC: generic-dmaengine-pcm: Clear slave_config memory
Date: Wed, 06 Nov 2013 12:55:35 +0100 [thread overview]
Message-ID: <527A2E37.2040100@metafoo.de> (raw)
In-Reply-To: <1383732985-18928-9-git-send-email-lee.jones@linaro.org>
On 11/06/2013 11:16 AM, Lee Jones wrote:
> We currently assume that the DMA Slave Config will be fully populated
> by the platform, however some DMA Engines make decisions based on zero
> (default) flags such as DMA_SLAVE_BUSWIDTH_UNDEFINED and as this is a
> static declaration we need to memset it to clear the data area.
>
> Cc: alsa-devel at alsa-project.org
> Cc: Mark Brown <broonie@kernel.org>
> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Thanks.
> ---
> sound/soc/soc-generic-dmaengine-pcm.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/sound/soc/soc-generic-dmaengine-pcm.c b/sound/soc/soc-generic-dmaengine-pcm.c
> index ee07903..6ad4c7a 100644
> --- a/sound/soc/soc-generic-dmaengine-pcm.c
> +++ b/sound/soc/soc-generic-dmaengine-pcm.c
> @@ -90,6 +90,8 @@ static int dmaengine_pcm_hw_params(struct snd_pcm_substream *substream,
> struct dma_slave_config slave_config;
> int ret;
>
> + memset(&slave_config, 0, sizeof(slave_config));
> +
> if (!pcm->config)
> prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config;
> else
>
next prev parent reply other threads:[~2013-11-06 11:55 UTC|newest]
Thread overview: 79+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-06 10:16 [PATCH 00/13] ASoC: dma: ARM: ux500: Obtain DMA data from Device Tree Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 10:16 ` [PATCH 01/13] dma: ste_dma40: Expand DT binding to accept 'high-priority channel' flag Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:40 ` Linus Walleij
2013-11-06 11:40 ` Linus Walleij
2013-11-06 11:40 ` Linus Walleij
2013-11-06 12:11 ` Lee Jones
2013-11-06 12:11 ` Lee Jones
2013-11-13 14:16 ` Vinod Koul
2013-11-13 14:16 ` Vinod Koul
2013-11-06 10:16 ` [PATCH 02/13] dma: ste_dma40: Parse flags property for new 'high priority channel' request Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:40 ` Linus Walleij
2013-11-06 11:40 ` Linus Walleij
2013-11-13 14:16 ` Vinod Koul
2013-11-13 14:16 ` Vinod Koul
2013-11-06 10:16 ` [PATCH 03/13] ARM: ux500: Don't use enums for MSP IDs - for easy DT conversion Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:41 ` Linus Walleij
2013-11-06 11:41 ` Linus Walleij
2013-11-06 10:16 ` [PATCH 04/13] ARM: ux500: Add DMA config bindings for MSP devices Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:44 ` Linus Walleij
2013-11-06 11:44 ` Linus Walleij
2013-11-06 12:10 ` Lee Jones
2013-11-06 12:10 ` Lee Jones
2013-11-12 19:43 ` Linus Walleij
2013-11-12 19:43 ` Linus Walleij
2013-11-06 10:16 ` [PATCH 05/13] ARM: ux500: Add ID properties to 'simply' differentiate between MSPs Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:45 ` Linus Walleij
2013-11-06 11:45 ` Linus Walleij
2013-11-06 10:16 ` [PATCH 06/13] ASoC: ux500_pcm: Extend ux500 MSP binding for enumeration Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 10:46 ` Mark Brown
2013-11-06 10:46 ` Mark Brown
2013-11-06 11:22 ` Lee Jones
2013-11-06 11:22 ` Lee Jones
2013-11-06 11:55 ` Linus Walleij
2013-11-06 11:55 ` Linus Walleij
2013-11-06 12:04 ` Mark Brown
2013-11-06 12:04 ` Mark Brown
2013-11-06 12:04 ` Mark Brown
2013-11-06 12:07 ` Lee Jones
2013-11-06 12:07 ` Lee Jones
2013-11-06 10:16 ` [PATCH 07/13] ASoC: ux500_pcm: Extract MSP IDs from Device Tree Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:46 ` Linus Walleij
2013-11-06 11:46 ` Linus Walleij
2013-11-06 10:16 ` [PATCH 08/13] ASoC: generic-dmaengine-pcm: Clear slave_config memory Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:55 ` Lars-Peter Clausen [this message]
2013-11-06 11:55 ` [alsa-devel] " Lars-Peter Clausen
2013-11-07 11:36 ` Mark Brown
2013-11-07 11:36 ` Mark Brown
2013-11-07 11:36 ` Mark Brown
2013-11-06 10:16 ` [PATCH 09/13] ASoC: Ux500: Match platform by device node when booting Device Tree Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:47 ` Linus Walleij
2013-11-06 11:47 ` Linus Walleij
2013-11-06 10:16 ` [PATCH 10/13] ASoC: ux500_pcm: Extend Device Tree support to deal with DMA data Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:49 ` Linus Walleij
2013-11-06 11:49 ` Linus Walleij
2013-11-06 10:16 ` [PATCH 11/13] ASoC: ux500: Store DMA data in the DAI differently in the pdata and DT case Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:50 ` Linus Walleij
2013-11-06 11:50 ` Linus Walleij
2013-11-06 11:50 ` Linus Walleij
2013-11-06 10:16 ` [PATCH 12/13] ASoC: ux500_pcm: Differentiate between pdata and DT initialisation Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:51 ` Linus Walleij
2013-11-06 11:51 ` Linus Walleij
2013-11-06 10:16 ` [PATCH 13/13] ASoC: ux500_pcm: Take out pointless dev_dbg() call Lee Jones
2013-11-06 10:16 ` Lee Jones
2013-11-06 11:52 ` Linus Walleij
2013-11-06 11:52 ` Linus Walleij
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=527A2E37.2040100@metafoo.de \
--to=lars@metafoo.de \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=lee.jones@linaro.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
/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.