* [PATCH 1/3] ASoC: Staticise rx51_aux_dev
@ 2011-12-13 2:13 Axel Lin
2011-12-13 2:14 ` [PATCH 2/3] ASoC: Staticise au1xpsc_soc_platform Axel Lin
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Axel Lin @ 2011-12-13 2:13 UTC (permalink / raw)
To: alsa-devel; +Cc: Peter Ujfalusi, Mark Brown, Liam Girdwood, Jarkko Nikula
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/omap/rx51.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/omap/rx51.c b/sound/soc/omap/rx51.c
index 4cabb74..ad16db5 100644
--- a/sound/soc/omap/rx51.c
+++ b/sound/soc/omap/rx51.c
@@ -365,7 +365,7 @@ static struct snd_soc_dai_link rx51_dai[] = {
},
};
-struct snd_soc_aux_dev rx51_aux_dev[] = {
+static struct snd_soc_aux_dev rx51_aux_dev[] = {
{
.name = "TLV320AIC34b",
.codec_name = "tlv320aic3x-codec.2-0019",
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/3] ASoC: Staticise au1xpsc_soc_platform
2011-12-13 2:13 [PATCH 1/3] ASoC: Staticise rx51_aux_dev Axel Lin
@ 2011-12-13 2:14 ` Axel Lin
2011-12-13 2:15 ` [PATCH 3/3] ASoC: Staticise alchemy_pcm_soc_platform Axel Lin
2011-12-13 4:10 ` [PATCH 1/3] ASoC: Staticise rx51_aux_dev Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Axel Lin @ 2011-12-13 2:14 UTC (permalink / raw)
To: alsa-devel; +Cc: Manuel Lauss, Mark Brown, Liam Girdwood
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/au1x/dbdma2.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/au1x/dbdma2.c b/sound/soc/au1x/dbdma2.c
index 09699de..92bc1b0 100644
--- a/sound/soc/au1x/dbdma2.c
+++ b/sound/soc/au1x/dbdma2.c
@@ -341,7 +341,7 @@ static int au1xpsc_pcm_new(struct snd_soc_pcm_runtime *rtd)
}
/* au1xpsc audio platform */
-struct snd_soc_platform_driver au1xpsc_soc_platform = {
+static struct snd_soc_platform_driver au1xpsc_soc_platform = {
.ops = &au1xpsc_pcm_ops,
.pcm_new = au1xpsc_pcm_new,
.pcm_free = au1xpsc_pcm_free_dma_buffers,
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 3/3] ASoC: Staticise alchemy_pcm_soc_platform
2011-12-13 2:13 [PATCH 1/3] ASoC: Staticise rx51_aux_dev Axel Lin
2011-12-13 2:14 ` [PATCH 2/3] ASoC: Staticise au1xpsc_soc_platform Axel Lin
@ 2011-12-13 2:15 ` Axel Lin
2011-12-13 4:10 ` [PATCH 1/3] ASoC: Staticise rx51_aux_dev Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Axel Lin @ 2011-12-13 2:15 UTC (permalink / raw)
To: alsa-devel; +Cc: Manuel Lauss, Mark Brown, Liam Girdwood
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/au1x/dma.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/au1x/dma.c b/sound/soc/au1x/dma.c
index dc4dae4..c4017bd 100644
--- a/sound/soc/au1x/dma.c
+++ b/sound/soc/au1x/dma.c
@@ -316,7 +316,7 @@ static int alchemy_pcm_new(struct snd_soc_pcm_runtime *rtd)
return 0;
}
-struct snd_soc_platform_driver alchemy_pcm_soc_platform = {
+static struct snd_soc_platform_driver alchemy_pcm_soc_platform = {
.ops = &alchemy_pcm_ops,
.pcm_new = alchemy_pcm_new,
.pcm_free = alchemy_pcm_free_dma_buffers,
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 1/3] ASoC: Staticise rx51_aux_dev
2011-12-13 2:13 [PATCH 1/3] ASoC: Staticise rx51_aux_dev Axel Lin
2011-12-13 2:14 ` [PATCH 2/3] ASoC: Staticise au1xpsc_soc_platform Axel Lin
2011-12-13 2:15 ` [PATCH 3/3] ASoC: Staticise alchemy_pcm_soc_platform Axel Lin
@ 2011-12-13 4:10 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2011-12-13 4:10 UTC (permalink / raw)
To: Axel Lin; +Cc: Peter Ujfalusi, alsa-devel, Liam Girdwood, Jarkko Nikula
On Tue, Dec 13, 2011 at 10:13:13AM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Applied all, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-12-13 4:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-13 2:13 [PATCH 1/3] ASoC: Staticise rx51_aux_dev Axel Lin
2011-12-13 2:14 ` [PATCH 2/3] ASoC: Staticise au1xpsc_soc_platform Axel Lin
2011-12-13 2:15 ` [PATCH 3/3] ASoC: Staticise alchemy_pcm_soc_platform Axel Lin
2011-12-13 4:10 ` [PATCH 1/3] ASoC: Staticise rx51_aux_dev 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).