alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update
@ 2011-01-12  4:08 Mike Frysinger
  2011-01-12  5:06 ` [stable] " Greg KH
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Mike Frysinger @ 2011-01-12  4:08 UTC (permalink / raw)
  To: alsa-devel, Mark Brown
  Cc: uclinux-dist-devel, stable, stable-review, linux-kernel

One spot was missed in this driver when converting from
snd_soc_dai.private_data to snd_soc_dai_get_drvdata.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 sound/soc/blackfin/bf5xx-tdm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/soc/blackfin/bf5xx-tdm.c b/sound/soc/blackfin/bf5xx-tdm.c
index 1251239..b2cf239 100644
--- a/sound/soc/blackfin/bf5xx-tdm.c
+++ b/sound/soc/blackfin/bf5xx-tdm.c
@@ -210,7 +210,7 @@ static int bf5xx_tdm_set_channel_map(struct snd_soc_dai *dai,
 #ifdef CONFIG_PM
 static int bf5xx_tdm_suspend(struct snd_soc_dai *dai)
 {
-	struct sport_device *sport = dai->private_data;
+	struct sport_device *sport = snd_soc_dai_get_drvdata(dai);
 
 	if (!dai->active)
 		return 0;
-- 
1.7.4.rc1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [stable] [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update
  2011-01-12  4:08 [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update Mike Frysinger
@ 2011-01-12  5:06 ` Greg KH
  2011-01-13 13:55 ` Mark Brown
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2011-01-12  5:06 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: alsa-devel, Mark Brown, linux-kernel, stable, uclinux-dist-devel,
	stable-review

On Tue, Jan 11, 2011 at 11:08:19PM -0500, Mike Frysinger wrote:
> One spot was missed in this driver when converting from
> snd_soc_dai.private_data to snd_soc_dai_get_drvdata.
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Please read Documentation/stable_kernel_rules.txt for how to get patches
into the stable kernel tree (hint, add cc: stable in the signed-off-by
line).  Copying the patches to the stable and stable-review lists
(stable-review is only for the review of the stable releases) will cause
them to get lost as they aren't in Linus's tree yet, so I don't know the
git commit id of it.

Hope this helps,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update
  2011-01-12  4:08 [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update Mike Frysinger
  2011-01-12  5:06 ` [stable] " Greg KH
@ 2011-01-13 13:55 ` Mark Brown
       [not found]   ` <20110113135525.GD11840-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
  2011-01-13 13:57 ` Liam Girdwood
  2011-01-13 14:16 ` Mark Brown
  3 siblings, 1 reply; 8+ messages in thread
From: Mark Brown @ 2011-01-13 13:55 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: uclinux-dist-devel, alsa-devel, linux-kernel

On Tue, Jan 11, 2011 at 11:08:19PM -0500, Mike Frysinger wrote:
> One spot was missed in this driver when converting from
> snd_soc_dai.private_data to snd_soc_dai_get_drvdata.
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Ccing in Liam - Mike, please remember to CC maintainers on patches - and
dropping the stable lists for now.


> ---
>  sound/soc/blackfin/bf5xx-tdm.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/sound/soc/blackfin/bf5xx-tdm.c b/sound/soc/blackfin/bf5xx-tdm.c
> index 1251239..b2cf239 100644
> --- a/sound/soc/blackfin/bf5xx-tdm.c
> +++ b/sound/soc/blackfin/bf5xx-tdm.c
> @@ -210,7 +210,7 @@ static int bf5xx_tdm_set_channel_map(struct snd_soc_dai *dai,
>  #ifdef CONFIG_PM
>  static int bf5xx_tdm_suspend(struct snd_soc_dai *dai)
>  {
> -	struct sport_device *sport = dai->private_data;
> +	struct sport_device *sport = snd_soc_dai_get_drvdata(dai);
>  
>  	if (!dai->active)
>  		return 0;
> -- 
> 1.7.4.rc1
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update
  2011-01-12  4:08 [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update Mike Frysinger
  2011-01-12  5:06 ` [stable] " Greg KH
  2011-01-13 13:55 ` Mark Brown
@ 2011-01-13 13:57 ` Liam Girdwood
  2011-01-13 14:16 ` Mark Brown
  3 siblings, 0 replies; 8+ messages in thread
From: Liam Girdwood @ 2011-01-13 13:57 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: alsa-devel, Mark Brown, linux-kernel, stable-review,
	uclinux-dist-devel, stable

On Tue, 2011-01-11 at 23:08 -0500, Mike Frysinger wrote:
> One spot was missed in this driver when converting from
> snd_soc_dai.private_data to snd_soc_dai_get_drvdata.
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---

Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
-- 
Freelance Developer, SlimLogic Ltd
ASoC and Voltage Regulator Maintainer.
http://www.slimlogic.co.uk

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update
  2011-01-12  4:08 [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update Mike Frysinger
                   ` (2 preceding siblings ...)
  2011-01-13 13:57 ` Liam Girdwood
@ 2011-01-13 14:16 ` Mark Brown
  3 siblings, 0 replies; 8+ messages in thread
From: Mark Brown @ 2011-01-13 14:16 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: uclinux-dist-devel, alsa-devel, stable, linux-kernel,
	stable-review

On Tue, Jan 11, 2011 at 11:08:19PM -0500, Mike Frysinger wrote:
> One spot was missed in this driver when converting from
> snd_soc_dai.private_data to snd_soc_dai_get_drvdata.
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Applied, thanks.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update
       [not found]   ` <20110113135525.GD11840-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
@ 2011-01-13 16:52     ` Mike Frysinger
  2011-01-13 17:12       ` [uclinux-dist-devel] " Mark Brown
  0 siblings, 1 reply; 8+ messages in thread
From: Mike Frysinger @ 2011-01-13 16:52 UTC (permalink / raw)
  To: Mark Brown
  Cc: uclinux-dist-devel-ZG0+EudsQA8dtHy/vicBwGD2FQJk+8+b,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

On Thu, Jan 13, 2011 at 08:55, Mark Brown wrote:
> On Tue, Jan 11, 2011 at 11:08:19PM -0500, Mike Frysinger wrote:
>> One spot was missed in this driver when converting from
>> snd_soc_dai.private_data to snd_soc_dai_get_drvdata.
>>
>> Signed-off-by: Mike Frysinger <vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
>
> Ccing in Liam - Mike, please remember to CC maintainers on patches - and
> dropping the stable lists for now.

i thought you were the ASoC maintainer
-mike

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [uclinux-dist-devel] [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update
  2011-01-13 16:52     ` Mike Frysinger
@ 2011-01-13 17:12       ` Mark Brown
  2011-01-13 17:17         ` Mike Frysinger
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Brown @ 2011-01-13 17:12 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: uclinux-dist-devel, alsa-devel, linux-kernel

On Thu, Jan 13, 2011 at 11:52:02AM -0500, Mike Frysinger wrote:
> On Thu, Jan 13, 2011 at 08:55, Mark Brown wrote:

> > Ccing in Liam - Mike, please remember to CC maintainers on patches - and
> > dropping the stable lists for now.

> i thought you were the ASoC maintainer

We comaintain ASoC, we generally both review everything except during
vacations.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [uclinux-dist-devel] [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update
  2011-01-13 17:12       ` [uclinux-dist-devel] " Mark Brown
@ 2011-01-13 17:17         ` Mike Frysinger
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Frysinger @ 2011-01-13 17:17 UTC (permalink / raw)
  To: Mark Brown; +Cc: uclinux-dist-devel, alsa-devel, linux-kernel

On Thu, Jan 13, 2011 at 12:12, Mark Brown wrote:
> On Thu, Jan 13, 2011 at 11:52:02AM -0500, Mike Frysinger wrote:
>> On Thu, Jan 13, 2011 at 08:55, Mark Brown wrote:
>> > Ccing in Liam - Mike, please remember to CC maintainers on patches - and
>> > dropping the stable lists for now.
>>
>> i thought you were the ASoC maintainer
>
> We comaintain ASoC, we generally both review everything except during
> vacations.

np ... i'll update my .git/mail
-mike

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-01-13 17:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-12  4:08 [PATCH] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update Mike Frysinger
2011-01-12  5:06 ` [stable] " Greg KH
2011-01-13 13:55 ` Mark Brown
     [not found]   ` <20110113135525.GD11840-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
2011-01-13 16:52     ` Mike Frysinger
2011-01-13 17:12       ` [uclinux-dist-devel] " Mark Brown
2011-01-13 17:17         ` Mike Frysinger
2011-01-13 13:57 ` Liam Girdwood
2011-01-13 14:16 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).