* [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai
@ 2011-10-02 9:41 Axel Lin
2011-10-02 9:42 ` [PATCH 2/3] ASoC: Staticise samsung_spdif_dai Axel Lin
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Axel Lin @ 2011-10-02 9:41 UTC (permalink / raw)
To: linux-kernel; +Cc: alsa-devel, Brown, Stephen Warren, Liam Girdwood, Mark
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/tegra/tegra_i2s.c | 2 +-
sound/soc/tegra/tegra_spdif.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/soc/tegra/tegra_i2s.c b/sound/soc/tegra/tegra_i2s.c
index f36b996..6728fab 100644
--- a/sound/soc/tegra/tegra_i2s.c
+++ b/sound/soc/tegra/tegra_i2s.c
@@ -312,7 +312,7 @@ static struct snd_soc_dai_ops tegra_i2s_dai_ops = {
.trigger = tegra_i2s_trigger,
};
-struct snd_soc_dai_driver tegra_i2s_dai[] = {
+static struct snd_soc_dai_driver tegra_i2s_dai[] = {
{
.name = DRV_NAME ".0",
.probe = tegra_i2s_probe,
diff --git a/sound/soc/tegra/tegra_spdif.c b/sound/soc/tegra/tegra_spdif.c
index abe606b..1bd07d1 100644
--- a/sound/soc/tegra/tegra_spdif.c
+++ b/sound/soc/tegra/tegra_spdif.c
@@ -232,7 +232,7 @@ static struct snd_soc_dai_ops tegra_spdif_dai_ops = {
.trigger = tegra_spdif_trigger,
};
-struct snd_soc_dai_driver tegra_spdif_dai = {
+static struct snd_soc_dai_driver tegra_spdif_dai = {
.name = DRV_NAME,
.probe = tegra_spdif_probe,
.playback = {
--
1.7.4.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/3] ASoC: Staticise samsung_spdif_dai
2011-10-02 9:41 [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai Axel Lin
@ 2011-10-02 9:42 ` Axel Lin
2011-10-02 18:59 ` Mark Brown
2011-10-02 9:43 ` [PATCH 3/3] ASoC: Staticise sh4_ssi_dai Axel Lin
2011-10-02 18:59 ` [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai Mark Brown
2 siblings, 1 reply; 6+ messages in thread
From: Axel Lin @ 2011-10-02 9:42 UTC (permalink / raw)
To: linux-kernel
Cc: alsa-devel, Jassi Brar, Sangbeom Kim, Mark Brown, Liam, Girdwood,
Seungwhan Youn
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/samsung/spdif.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/samsung/spdif.c b/sound/soc/samsung/spdif.c
index 965b2bd..468cff1 100644
--- a/sound/soc/samsung/spdif.c
+++ b/sound/soc/samsung/spdif.c
@@ -341,7 +341,7 @@ static struct snd_soc_dai_ops spdif_dai_ops = {
.shutdown = spdif_shutdown,
};
-struct snd_soc_dai_driver samsung_spdif_dai = {
+static struct snd_soc_dai_driver samsung_spdif_dai = {
.name = "samsung-spdif",
.playback = {
.stream_name = "S/PDIF Playback",
--
1.7.4.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/3] ASoC: Staticise sh4_ssi_dai
2011-10-02 9:41 [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai Axel Lin
2011-10-02 9:42 ` [PATCH 2/3] ASoC: Staticise samsung_spdif_dai Axel Lin
@ 2011-10-02 9:43 ` Axel Lin
2011-10-02 18:59 ` Mark Brown
2011-10-02 18:59 ` [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai Mark Brown
2 siblings, 1 reply; 6+ messages in thread
From: Axel Lin @ 2011-10-02 9:43 UTC (permalink / raw)
To: linux-kernel; +Cc: Manuel Lauss, Mark Brown, Liam Girdwood, alsa-devel
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/sh/ssi.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/sh/ssi.c b/sound/soc/sh/ssi.c
index 05192d9..e0c621c 100644
--- a/sound/soc/sh/ssi.c
+++ b/sound/soc/sh/ssi.c
@@ -342,7 +342,7 @@ static struct snd_soc_dai_ops ssi_dai_ops = {
.set_fmt = ssi_set_fmt,
};
-struct snd_soc_dai_driver sh4_ssi_dai[] = {
+static struct snd_soc_dai_driver sh4_ssi_dai[] = {
{
.name = "ssi-dai.0",
.playback = {
--
1.7.4.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai
2011-10-02 9:41 [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai Axel Lin
2011-10-02 9:42 ` [PATCH 2/3] ASoC: Staticise samsung_spdif_dai Axel Lin
2011-10-02 9:43 ` [PATCH 3/3] ASoC: Staticise sh4_ssi_dai Axel Lin
@ 2011-10-02 18:59 ` Mark Brown
2 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2011-10-02 18:59 UTC (permalink / raw)
To: Axel Lin; +Cc: linux-kernel, Stephen Warren, Liam Girdwood, alsa-devel
On Sun, Oct 02, 2011 at 05:41:40PM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/3] ASoC: Staticise samsung_spdif_dai
2011-10-02 9:42 ` [PATCH 2/3] ASoC: Staticise samsung_spdif_dai Axel Lin
@ 2011-10-02 18:59 ` Mark Brown
0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2011-10-02 18:59 UTC (permalink / raw)
To: Axel Lin
Cc: alsa-devel, Sangbeom Kim, Jassi Brar, linux-kernel, Liam Girdwood,
Seungwhan Youn
On Sun, Oct 02, 2011 at 05:42:30PM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 3/3] ASoC: Staticise sh4_ssi_dai
2011-10-02 9:43 ` [PATCH 3/3] ASoC: Staticise sh4_ssi_dai Axel Lin
@ 2011-10-02 18:59 ` Mark Brown
0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2011-10-02 18:59 UTC (permalink / raw)
To: Axel Lin; +Cc: Manuel Lauss, linux-kernel, alsa-devel, Liam Girdwood
On Sun, Oct 02, 2011 at 05:43:16PM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-10-02 18:59 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-02 9:41 [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai Axel Lin
2011-10-02 9:42 ` [PATCH 2/3] ASoC: Staticise samsung_spdif_dai Axel Lin
2011-10-02 18:59 ` Mark Brown
2011-10-02 9:43 ` [PATCH 3/3] ASoC: Staticise sh4_ssi_dai Axel Lin
2011-10-02 18:59 ` Mark Brown
2011-10-02 18:59 ` [PATCH 1/3] ASoC: tegra: Staticise tegra_i2s_dai and tegra_spdif_dai 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).