* [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card
@ 2011-12-23 6:47 Axel Lin
2011-12-23 6:48 ` [PATCH 2/8] ASoC: jz4740: " Axel Lin
` (8 more replies)
0 siblings, 9 replies; 11+ messages in thread
From: Axel Lin @ 2011-12-23 6:47 UTC (permalink / raw)
To: alsa-devel; +Cc: Sascha Hauer, Mark Brown, Liam Girdwood, Lothar Waßmann
Add missing .owner of struct snd_soc_card. This prevents the module from being
removed from underneath its users.
Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/imx/eukrea-tlv320.c | 1 +
sound/soc/imx/mx27vis-aic32x4.c | 1 +
sound/soc/imx/phycore-ac97.c | 1 +
sound/soc/imx/wm1133-ev1.c | 1 +
4 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/sound/soc/imx/eukrea-tlv320.c b/sound/soc/imx/eukrea-tlv320.c
index 75fb4b8..1c1fdd1 100644
--- a/sound/soc/imx/eukrea-tlv320.c
+++ b/sound/soc/imx/eukrea-tlv320.c
@@ -87,6 +87,7 @@ static struct snd_soc_dai_link eukrea_tlv320_dai = {
static struct snd_soc_card eukrea_tlv320 = {
.name = "cpuimx-audio",
+ .owner = THIS_MODULE,
.dai_link = &eukrea_tlv320_dai,
.num_links = 1,
};
diff --git a/sound/soc/imx/mx27vis-aic32x4.c b/sound/soc/imx/mx27vis-aic32x4.c
index 054110b..3c2eed9 100644
--- a/sound/soc/imx/mx27vis-aic32x4.c
+++ b/sound/soc/imx/mx27vis-aic32x4.c
@@ -86,6 +86,7 @@ static struct snd_soc_dai_link mx27vis_aic32x4_dai = {
static struct snd_soc_card mx27vis_aic32x4 = {
.name = "visstrim_m10-audio",
+ .owner = THIS_MODULE,
.dai_link = &mx27vis_aic32x4_dai,
.num_links = 1,
};
diff --git a/sound/soc/imx/phycore-ac97.c b/sound/soc/imx/phycore-ac97.c
index a7deb5c..6ac1211 100644
--- a/sound/soc/imx/phycore-ac97.c
+++ b/sound/soc/imx/phycore-ac97.c
@@ -38,6 +38,7 @@ static struct snd_soc_dai_link imx_phycore_dai_ac97[] = {
static struct snd_soc_card imx_phycore = {
.name = "PhyCORE-ac97-audio",
+ .owner = THIS_MODULE,
.dai_link = imx_phycore_dai_ac97,
.num_links = ARRAY_SIZE(imx_phycore_dai_ac97),
};
diff --git a/sound/soc/imx/wm1133-ev1.c b/sound/soc/imx/wm1133-ev1.c
index 75b4c72..96fa761 100644
--- a/sound/soc/imx/wm1133-ev1.c
+++ b/sound/soc/imx/wm1133-ev1.c
@@ -254,6 +254,7 @@ static struct snd_soc_dai_link wm1133_ev1_dai = {
static struct snd_soc_card wm1133_ev1 = {
.name = "WM1133-EV1",
+ .owner = THIS_MODULE,
.dai_link = &wm1133_ev1_dai,
.num_links = 1,
};
--
1.7.5.4
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/8] ASoC: jz4740: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
@ 2011-12-23 6:48 ` Axel Lin
2011-12-23 6:49 ` [PATCH 3/8] ASoC: kirkwood: " Axel Lin
` (7 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Axel Lin @ 2011-12-23 6:48 UTC (permalink / raw)
To: alsa-devel
Cc: Lars-Peter Clausen, Mark Brown, Liam Girdwood,
Lothar Waßmann
Add missing .owner of struct snd_soc_card. This prevents the module from being
removed from underneath its users.
Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/jz4740/qi_lb60.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/sound/soc/jz4740/qi_lb60.c b/sound/soc/jz4740/qi_lb60.c
index c5fc339..0097c3b 100644
--- a/sound/soc/jz4740/qi_lb60.c
+++ b/sound/soc/jz4740/qi_lb60.c
@@ -81,6 +81,7 @@ static struct snd_soc_dai_link qi_lb60_dai = {
static struct snd_soc_card qi_lb60 = {
.name = "QI LB60",
+ .owner = THIS_MODULE,
.dai_link = &qi_lb60_dai,
.num_links = 1,
--
1.7.5.4
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/8] ASoC: kirkwood: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
2011-12-23 6:48 ` [PATCH 2/8] ASoC: jz4740: " Axel Lin
@ 2011-12-23 6:49 ` Axel Lin
2011-12-23 6:50 ` [PATCH 4/8] ASoC: mid-x86: " Axel Lin
` (6 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Axel Lin @ 2011-12-23 6:49 UTC (permalink / raw)
To: alsa-devel; +Cc: Lothar, Mark Brown, Liam Girdwood, Arnaud Patard, Waßmann
Add missing .owner of struct snd_soc_card. This prevents the module from being
removed from underneath its users.
Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/kirkwood/kirkwood-openrd.c | 1 +
sound/soc/kirkwood/kirkwood-t5325.c | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/sound/soc/kirkwood/kirkwood-openrd.c b/sound/soc/kirkwood/kirkwood-openrd.c
index d863afb..8a5a3dd 100644
--- a/sound/soc/kirkwood/kirkwood-openrd.c
+++ b/sound/soc/kirkwood/kirkwood-openrd.c
@@ -76,6 +76,7 @@ static struct snd_soc_dai_link openrd_client_dai[] = {
static struct snd_soc_card openrd_client = {
.name = "OpenRD Client",
+ .owner = THIS_MODULE,
.dai_link = openrd_client_dai,
.num_links = ARRAY_SIZE(openrd_client_dai),
};
diff --git a/sound/soc/kirkwood/kirkwood-t5325.c b/sound/soc/kirkwood/kirkwood-t5325.c
index c772b3c..a8930c7 100644
--- a/sound/soc/kirkwood/kirkwood-t5325.c
+++ b/sound/soc/kirkwood/kirkwood-t5325.c
@@ -98,6 +98,7 @@ static struct snd_soc_dai_link t5325_dai[] = {
static struct snd_soc_card t5325 = {
.name = "t5325",
+ .owner = THIS_MODULE,
.dai_link = t5325_dai,
.num_links = ARRAY_SIZE(t5325_dai),
};
--
1.7.5.4
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 4/8] ASoC: mid-x86: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
2011-12-23 6:48 ` [PATCH 2/8] ASoC: jz4740: " Axel Lin
2011-12-23 6:49 ` [PATCH 3/8] ASoC: kirkwood: " Axel Lin
@ 2011-12-23 6:50 ` Axel Lin
2011-12-23 6:51 ` [PATCH 5/8] ASoC: nuc900: " Axel Lin
` (5 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Axel Lin @ 2011-12-23 6:50 UTC (permalink / raw)
To: alsa-devel; +Cc: Lothar, Vinod Koul, Mark Brown, Liam Girdwood, Waßmann
Add missing .owner of struct snd_soc_card. This prevents the module from being
removed from underneath its users.
Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/mid-x86/mfld_machine.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/sound/soc/mid-x86/mfld_machine.c b/sound/soc/mid-x86/mfld_machine.c
index 598f48c..3b942a7 100644
--- a/sound/soc/mid-x86/mfld_machine.c
+++ b/sound/soc/mid-x86/mfld_machine.c
@@ -322,6 +322,7 @@ struct snd_soc_dai_link mfld_msic_dailink[] = {
/* SoC card */
static struct snd_soc_card snd_soc_card_mfld = {
.name = "medfield_audio",
+ .owner = THIS_MODULE,
.dai_link = mfld_msic_dailink,
.num_links = ARRAY_SIZE(mfld_msic_dailink),
};
--
1.7.5.4
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 5/8] ASoC: nuc900: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
` (2 preceding siblings ...)
2011-12-23 6:50 ` [PATCH 4/8] ASoC: mid-x86: " Axel Lin
@ 2011-12-23 6:51 ` Axel Lin
2011-12-23 6:52 ` [PATCH 6/8] ASoC: s6000: " Axel Lin
` (4 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Axel Lin @ 2011-12-23 6:51 UTC (permalink / raw)
To: alsa-devel; +Cc: Mark Brown, Liam Girdwood, Wan ZongShun, Lothar Waßmann
Add missing .owner of struct snd_soc_card. This prevents the module from being
removed from underneath its users.
Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/nuc900/nuc900-audio.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/sound/soc/nuc900/nuc900-audio.c b/sound/soc/nuc900/nuc900-audio.c
index 38a2d0d..2f6e6fd 100644
--- a/sound/soc/nuc900/nuc900-audio.c
+++ b/sound/soc/nuc900/nuc900-audio.c
@@ -32,6 +32,7 @@ static struct snd_soc_dai_link nuc900evb_ac97_dai = {
static struct snd_soc_card nuc900evb_audio_machine = {
.name = "NUC900EVB_AC97",
+ .owner = THIS_MODULE,
.dai_link = &nuc900evb_ac97_dai,
.num_links = 1,
};
--
1.7.5.4
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 6/8] ASoC: s6000: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
` (3 preceding siblings ...)
2011-12-23 6:51 ` [PATCH 5/8] ASoC: nuc900: " Axel Lin
@ 2011-12-23 6:52 ` Axel Lin
2011-12-23 11:31 ` Daniel Glöckner
2011-12-23 6:53 ` [PATCH 7/8] ASoC: sh: " Axel Lin
` (3 subsequent siblings)
8 siblings, 1 reply; 11+ messages in thread
From: Axel Lin @ 2011-12-23 6:52 UTC (permalink / raw)
To: alsa-devel
Cc: Lothar Waßmann, Mark Brown, Liam Girdwood, Daniel Gloeckner
Add missing .owner of struct snd_soc_card. This prevents the module from being
removed from underneath its users.
Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/s6000/s6105-ipcam.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/sound/soc/s6000/s6105-ipcam.c b/sound/soc/s6000/s6105-ipcam.c
index 5890e43..58cfb1e 100644
--- a/sound/soc/s6000/s6105-ipcam.c
+++ b/sound/soc/s6000/s6105-ipcam.c
@@ -187,6 +187,7 @@ static struct snd_soc_dai_link s6105_dai = {
/* s6105 audio machine driver */
static struct snd_soc_card snd_soc_card_s6105 = {
.name = "Stretch IP Camera",
+ .owner = THIS_MODULE,
.dai_link = &s6105_dai,
.num_links = 1,
};
--
1.7.5.4
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 7/8] ASoC: sh: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
` (4 preceding siblings ...)
2011-12-23 6:52 ` [PATCH 6/8] ASoC: s6000: " Axel Lin
@ 2011-12-23 6:53 ` Axel Lin
2011-12-23 6:54 ` [PATCH 8/8] ASoC: txx9: " Axel Lin
` (2 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Axel Lin @ 2011-12-23 6:53 UTC (permalink / raw)
To: alsa-devel
Cc: Paul Mundt, Mark Brown, Liam Girdwood, Kuninori Morimoto,
Lothar Waßmann
Add missing .owner of struct snd_soc_card. This prevents the module from being
removed from underneath its users.
Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/sh/fsi-ak4642.c | 1 +
sound/soc/sh/fsi-da7210.c | 1 +
sound/soc/sh/fsi-hdmi.c | 1 +
sound/soc/sh/migor.c | 1 +
sound/soc/sh/sh7760-ac97.c | 1 +
5 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/sound/soc/sh/fsi-ak4642.c b/sound/soc/sh/fsi-ak4642.c
index 770a71a..9a69910 100644
--- a/sound/soc/sh/fsi-ak4642.c
+++ b/sound/soc/sh/fsi-ak4642.c
@@ -48,6 +48,7 @@ static struct snd_soc_dai_link fsi_dai_link = {
};
static struct snd_soc_card fsi_soc_card = {
+ .owner = THIS_MODULE,
.dai_link = &fsi_dai_link,
.num_links = 1,
};
diff --git a/sound/soc/sh/fsi-da7210.c b/sound/soc/sh/fsi-da7210.c
index 59553fd..df6ba4d 100644
--- a/sound/soc/sh/fsi-da7210.c
+++ b/sound/soc/sh/fsi-da7210.c
@@ -43,6 +43,7 @@ static struct snd_soc_dai_link fsi_da7210_dai = {
static struct snd_soc_card fsi_soc_card = {
.name = "FSI-DA7210",
+ .owner = THIS_MODULE,
.dai_link = &fsi_da7210_dai,
.num_links = 1,
};
diff --git a/sound/soc/sh/fsi-hdmi.c b/sound/soc/sh/fsi-hdmi.c
index d3d9fd8..55723e0 100644
--- a/sound/soc/sh/fsi-hdmi.c
+++ b/sound/soc/sh/fsi-hdmi.c
@@ -38,6 +38,7 @@ static struct snd_soc_dai_link fsi_dai_link = {
};
static struct snd_soc_card fsi_soc_card = {
+ .owner = THIS_MODULE,
.dai_link = &fsi_dai_link,
.num_links = 1,
};
diff --git a/sound/soc/sh/migor.c b/sound/soc/sh/migor.c
index 6088a6a..9d9ad8d 100644
--- a/sound/soc/sh/migor.c
+++ b/sound/soc/sh/migor.c
@@ -164,6 +164,7 @@ static struct snd_soc_dai_link migor_dai = {
/* migor audio machine driver */
static struct snd_soc_card snd_soc_migor = {
.name = "Migo-R",
+ .owner = THIS_MODULE,
.dai_link = &migor_dai,
.num_links = 1,
};
diff --git a/sound/soc/sh/sh7760-ac97.c b/sound/soc/sh/sh7760-ac97.c
index c62ae68..d77fbf7 100644
--- a/sound/soc/sh/sh7760-ac97.c
+++ b/sound/soc/sh/sh7760-ac97.c
@@ -32,6 +32,7 @@ static struct snd_soc_dai_link sh7760_ac97_dai = {
static struct snd_soc_card sh7760_ac97_soc_machine = {
.name = "SH7760 AC97",
+ .owner = THIS_MODULE,
.dai_link = &sh7760_ac97_dai,
.num_links = 1,
};
--
1.7.5.4
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 8/8] ASoC: txx9: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
` (5 preceding siblings ...)
2011-12-23 6:53 ` [PATCH 7/8] ASoC: sh: " Axel Lin
@ 2011-12-23 6:54 ` Axel Lin
2011-12-23 7:39 ` [PATCH 1/8] ASoC: imx: " Wolfram Sang
2011-12-23 11:17 ` Mark Brown
8 siblings, 0 replies; 11+ messages in thread
From: Axel Lin @ 2011-12-23 6:54 UTC (permalink / raw)
To: alsa-devel; +Cc: Atsushi Nemoto, Mark Brown, Liam Girdwood, Lothar Waßmann
Add missing .owner of struct snd_soc_card. This prevents the module from being
removed from underneath its users.
Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/txx9/txx9aclc-generic.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/sound/soc/txx9/txx9aclc-generic.c b/sound/soc/txx9/txx9aclc-generic.c
index 9b5e283..b056a14 100644
--- a/sound/soc/txx9/txx9aclc-generic.c
+++ b/sound/soc/txx9/txx9aclc-generic.c
@@ -32,6 +32,7 @@ static struct snd_soc_dai_link txx9aclc_generic_dai = {
static struct snd_soc_card txx9aclc_generic_card = {
.name = "Generic TXx9 ACLC Audio",
+ .owner = THIS_MODULE,
.dai_link = &txx9aclc_generic_dai,
.num_links = 1,
};
--
1.7.5.4
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
` (6 preceding siblings ...)
2011-12-23 6:54 ` [PATCH 8/8] ASoC: txx9: " Axel Lin
@ 2011-12-23 7:39 ` Wolfram Sang
2011-12-23 11:17 ` Mark Brown
8 siblings, 0 replies; 11+ messages in thread
From: Wolfram Sang @ 2011-12-23 7:39 UTC (permalink / raw)
To: Axel Lin
Cc: alsa-devel, Mark Brown, Sascha Hauer, Lothar Waßmann,
Liam Girdwood
[-- Attachment #1.1: Type: text/plain, Size: 496 bytes --]
On Fri, Dec 23, 2011 at 02:47:08PM +0800, Axel Lin wrote:
> Add missing .owner of struct snd_soc_card. This prevents the module from being
> removed from underneath its users.
>
> Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
--
Pengutronix e.K. | Wolfram Sang |
Industrial Linux Solutions | http://www.pengutronix.de/ |
[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
` (7 preceding siblings ...)
2011-12-23 7:39 ` [PATCH 1/8] ASoC: imx: " Wolfram Sang
@ 2011-12-23 11:17 ` Mark Brown
8 siblings, 0 replies; 11+ messages in thread
From: Mark Brown @ 2011-12-23 11:17 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Liam Girdwood, Sascha Hauer, Lothar Waßmann
On Fri, Dec 23, 2011 at 02:47:08PM +0800, Axel Lin wrote:
> Add missing .owner of struct snd_soc_card. This prevents the module from being
> removed from underneath its users.
Applied all, thanks.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 6/8] ASoC: s6000: Add .owner to struct snd_soc_card
2011-12-23 6:52 ` [PATCH 6/8] ASoC: s6000: " Axel Lin
@ 2011-12-23 11:31 ` Daniel Glöckner
0 siblings, 0 replies; 11+ messages in thread
From: Daniel Glöckner @ 2011-12-23 11:31 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Mark Brown, Liam Girdwood, Lothar Waßmann
On Fri, Dec 23, 2011 at 02:52:22PM +0800, Axel Lin wrote:
> Add missing .owner of struct snd_soc_card. This prevents the module from being
> removed from underneath its users.
>
> Reported-by: Lothar Waßmann <LW@KARO-electronics.de>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
> sound/soc/s6000/s6105-ipcam.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
Acked-by: Daniel Glöckner <dg@emlix.com>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2011-12-23 11:25 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-23 6:47 [PATCH 1/8] ASoC: imx: Add .owner to struct snd_soc_card Axel Lin
2011-12-23 6:48 ` [PATCH 2/8] ASoC: jz4740: " Axel Lin
2011-12-23 6:49 ` [PATCH 3/8] ASoC: kirkwood: " Axel Lin
2011-12-23 6:50 ` [PATCH 4/8] ASoC: mid-x86: " Axel Lin
2011-12-23 6:51 ` [PATCH 5/8] ASoC: nuc900: " Axel Lin
2011-12-23 6:52 ` [PATCH 6/8] ASoC: s6000: " Axel Lin
2011-12-23 11:31 ` Daniel Glöckner
2011-12-23 6:53 ` [PATCH 7/8] ASoC: sh: " Axel Lin
2011-12-23 6:54 ` [PATCH 8/8] ASoC: txx9: " Axel Lin
2011-12-23 7:39 ` [PATCH 1/8] ASoC: imx: " Wolfram Sang
2011-12-23 11:17 ` 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).