alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: Prototype s3c64xx_i2s_get_clock()
@ 2010-09-20 17:24 Mark Brown
  2010-09-20 17:42 ` Liam Girdwood
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Mark Brown @ 2010-09-20 17:24 UTC (permalink / raw)
  To: Jassi Brar, Liam Girdwood; +Cc: alsa-devel, patches, Mark Brown

So machine drivers can see the declaration.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
---
 sound/soc/s3c24xx/s3c64xx-i2s.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/sound/soc/s3c24xx/s3c64xx-i2s.h b/sound/soc/s3c24xx/s3c64xx-i2s.h
index 19bd444..de4075d 100644
--- a/sound/soc/s3c24xx/s3c64xx-i2s.h
+++ b/sound/soc/s3c24xx/s3c64xx-i2s.h
@@ -36,5 +36,6 @@ struct clk;
 	(SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE |\
 	 SNDRV_PCM_FMTBIT_S24_LE)
 
+struct clk *s3c64xx_i2s_get_clock(struct snd_soc_dai *dai);
 
 #endif /* __SND_SOC_S3C24XX_S3C64XX_I2S_H */
-- 
1.7.1

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

* Re: [PATCH] ASoC: Prototype s3c64xx_i2s_get_clock()
  2010-09-20 17:24 [PATCH] ASoC: Prototype s3c64xx_i2s_get_clock() Mark Brown
@ 2010-09-20 17:42 ` Liam Girdwood
  2010-09-21  0:29 ` Jassi Brar
  2010-09-21 13:06 ` Liam Girdwood
  2 siblings, 0 replies; 4+ messages in thread
From: Liam Girdwood @ 2010-09-20 17:42 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, patches, Jassi Brar

On Mon, 2010-09-20 at 18:24 +0100, Mark Brown wrote:
> So machine drivers can see the declaration.
> 
> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> ---
>  sound/soc/s3c24xx/s3c64xx-i2s.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/sound/soc/s3c24xx/s3c64xx-i2s.h b/sound/soc/s3c24xx/s3c64xx-i2s.h
> index 19bd444..de4075d 100644
> --- a/sound/soc/s3c24xx/s3c64xx-i2s.h
> +++ b/sound/soc/s3c24xx/s3c64xx-i2s.h
> @@ -36,5 +36,6 @@ struct clk;
>  	(SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE |\
>  	 SNDRV_PCM_FMTBIT_S24_LE)
>  
> +struct clk *s3c64xx_i2s_get_clock(struct snd_soc_dai *dai);
>  
>  #endif /* __SND_SOC_S3C24XX_S3C64XX_I2S_H */

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] 4+ messages in thread

* Re: [PATCH] ASoC: Prototype s3c64xx_i2s_get_clock()
  2010-09-20 17:24 [PATCH] ASoC: Prototype s3c64xx_i2s_get_clock() Mark Brown
  2010-09-20 17:42 ` Liam Girdwood
@ 2010-09-21  0:29 ` Jassi Brar
  2010-09-21 13:06 ` Liam Girdwood
  2 siblings, 0 replies; 4+ messages in thread
From: Jassi Brar @ 2010-09-21  0:29 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, patches, Jassi Brar, Liam Girdwood

On Tue, Sep 21, 2010 at 2:24 AM, Mark Brown
<broonie@opensource.wolfsonmicro.com> wrote:
> So machine drivers can see the declaration.
>
> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> ---
>  sound/soc/s3c24xx/s3c64xx-i2s.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/sound/soc/s3c24xx/s3c64xx-i2s.h b/sound/soc/s3c24xx/s3c64xx-i2s.h
> index 19bd444..de4075d 100644
> --- a/sound/soc/s3c24xx/s3c64xx-i2s.h
> +++ b/sound/soc/s3c24xx/s3c64xx-i2s.h
> @@ -36,5 +36,6 @@ struct clk;
>        (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE |\
>         SNDRV_PCM_FMTBIT_S24_LE)
>
> +struct clk *s3c64xx_i2s_get_clock(struct snd_soc_dai *dai);
>
>  #endif /* __SND_SOC_S3C24XX_S3C64XX_I2S_H */

Acked-by: Jassi Brar <jassi.brar@samsung.com>
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

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

* Re: [PATCH] ASoC: Prototype s3c64xx_i2s_get_clock()
  2010-09-20 17:24 [PATCH] ASoC: Prototype s3c64xx_i2s_get_clock() Mark Brown
  2010-09-20 17:42 ` Liam Girdwood
  2010-09-21  0:29 ` Jassi Brar
@ 2010-09-21 13:06 ` Liam Girdwood
  2 siblings, 0 replies; 4+ messages in thread
From: Liam Girdwood @ 2010-09-21 13:06 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, patches, Jassi Brar

On Mon, 2010-09-20 at 18:24 +0100, Mark Brown wrote:
> So machine drivers can see the declaration.
> 
> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> ---
>  sound/soc/s3c24xx/s3c64xx-i2s.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/sound/soc/s3c24xx/s3c64xx-i2s.h b/sound/soc/s3c24xx/s3c64xx-i2s.h
> index 19bd444..de4075d 100644
> --- a/sound/soc/s3c24xx/s3c64xx-i2s.h
> +++ b/sound/soc/s3c24xx/s3c64xx-i2s.h
> @@ -36,5 +36,6 @@ struct clk;
>  	(SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE |\
>  	 SNDRV_PCM_FMTBIT_S24_LE)
>  
> +struct clk *s3c64xx_i2s_get_clock(struct snd_soc_dai *dai);
>  
>  #endif /* __SND_SOC_S3C24XX_S3C64XX_I2S_H */

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] 4+ messages in thread

end of thread, other threads:[~2010-09-21 13:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-20 17:24 [PATCH] ASoC: Prototype s3c64xx_i2s_get_clock() Mark Brown
2010-09-20 17:42 ` Liam Girdwood
2010-09-21  0:29 ` Jassi Brar
2010-09-21 13:06 ` Liam Girdwood

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).