All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] ASoC: fsl: fsl_ssi: Add MODULE_ALIAS
@ 2013-07-20 19:16 Fabio Estevam
  2013-07-20 19:16 ` [PATCH 2/3] ASoC: sgtl5000: " Fabio Estevam
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Fabio Estevam @ 2013-07-20 19:16 UTC (permalink / raw)
  To: broonie; +Cc: Fabio Estevam, alsa-devel, timur

From: Fabio Estevam <fabio.estevam@freescale.com>

Add MODULE_ALIAS, so that auto module loading can work.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 sound/soc/fsl/fsl_ssi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index c9974a4..429fbfd 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -900,6 +900,7 @@ static struct platform_driver fsl_ssi_driver = {
 
 module_platform_driver(fsl_ssi_driver);
 
+MODULE_ALIAS("platform:fsl-ssi-dai");
 MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
 MODULE_DESCRIPTION("Freescale Synchronous Serial Interface (SSI) ASoC Driver");
 MODULE_LICENSE("GPL v2");
-- 
1.8.1.2

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

* [PATCH 2/3] ASoC: sgtl5000: Add MODULE_ALIAS
  2013-07-20 19:16 [PATCH 1/3] ASoC: fsl: fsl_ssi: Add MODULE_ALIAS Fabio Estevam
@ 2013-07-20 19:16 ` Fabio Estevam
  2013-07-21 23:53   ` Mark Brown
  2013-07-20 19:16 ` [PATCH 3/3] ASoC: wm8962: " Fabio Estevam
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2013-07-20 19:16 UTC (permalink / raw)
  To: broonie; +Cc: Fabio Estevam, alsa-devel, timur

From: Fabio Estevam <fabio.estevam@freescale.com>

Add MODULE_ALIAS, so that auto module loading can work.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 sound/soc/codecs/sgtl5000.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/sgtl5000.c b/sound/soc/codecs/sgtl5000.c
index c8b9090..58b1b30 100644
--- a/sound/soc/codecs/sgtl5000.c
+++ b/sound/soc/codecs/sgtl5000.c
@@ -1608,6 +1608,7 @@ static struct i2c_driver sgtl5000_i2c_driver = {
 
 module_i2c_driver(sgtl5000_i2c_driver);
 
+MODULE_ALIAS("platform:sgtl5000");
 MODULE_DESCRIPTION("Freescale SGTL5000 ALSA SoC Codec Driver");
 MODULE_AUTHOR("Zeng Zhaoming <zengzm.kernel@gmail.com>");
 MODULE_LICENSE("GPL");
-- 
1.8.1.2

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

* [PATCH 3/3] ASoC: wm8962: Add MODULE_ALIAS
  2013-07-20 19:16 [PATCH 1/3] ASoC: fsl: fsl_ssi: Add MODULE_ALIAS Fabio Estevam
  2013-07-20 19:16 ` [PATCH 2/3] ASoC: sgtl5000: " Fabio Estevam
@ 2013-07-20 19:16 ` Fabio Estevam
  2013-07-21 23:54   ` Mark Brown
  2013-07-20 22:54 ` [PATCH 1/3] ASoC: fsl: fsl_ssi: " Timur Tabi
  2013-07-21 23:55 ` Mark Brown
  3 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2013-07-20 19:16 UTC (permalink / raw)
  To: broonie; +Cc: Fabio Estevam, alsa-devel, timur

From: Fabio Estevam <fabio.estevam@freescale.com>

Add MODULE_ALIAS, so that auto module loading can work.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 sound/soc/codecs/wm8962.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index 8b8905d..a50033c 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -3837,6 +3837,7 @@ static struct i2c_driver wm8962_i2c_driver = {
 
 module_i2c_driver(wm8962_i2c_driver);
 
+MODULE_ALIAS("platform:wm8962");
 MODULE_DESCRIPTION("ASoC WM8962 driver");
 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
 MODULE_LICENSE("GPL");
-- 
1.8.1.2

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

* Re: [PATCH 1/3] ASoC: fsl: fsl_ssi: Add MODULE_ALIAS
  2013-07-20 19:16 [PATCH 1/3] ASoC: fsl: fsl_ssi: Add MODULE_ALIAS Fabio Estevam
  2013-07-20 19:16 ` [PATCH 2/3] ASoC: sgtl5000: " Fabio Estevam
  2013-07-20 19:16 ` [PATCH 3/3] ASoC: wm8962: " Fabio Estevam
@ 2013-07-20 22:54 ` Timur Tabi
  2013-07-21 23:55 ` Mark Brown
  3 siblings, 0 replies; 7+ messages in thread
From: Timur Tabi @ 2013-07-20 22:54 UTC (permalink / raw)
  To: Fabio Estevam, broonie; +Cc: Fabio Estevam, alsa-devel

Fabio Estevam wrote:
> From: Fabio Estevam<fabio.estevam@freescale.com>
>
> Add MODULE_ALIAS, so that auto module loading can work.
>
> Signed-off-by: Fabio Estevam<fabio.estevam@freescale.com>
> ---

I'm assuming that this works, so ACK.

-- 
Timur Tabi

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

* Re: [PATCH 2/3] ASoC: sgtl5000: Add MODULE_ALIAS
  2013-07-20 19:16 ` [PATCH 2/3] ASoC: sgtl5000: " Fabio Estevam
@ 2013-07-21 23:53   ` Mark Brown
  0 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2013-07-21 23:53 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Fabio Estevam, alsa-devel, timur


[-- Attachment #1.1: Type: text/plain, Size: 210 bytes --]

On Sat, Jul 20, 2013 at 04:16:02PM -0300, Fabio Estevam wrote:

>  module_i2c_driver(sgtl5000_i2c_driver);
>  
> +MODULE_ALIAS("platform:sgtl5000");

This shouldn't do anything useful for an I2C device?

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [PATCH 3/3] ASoC: wm8962: Add MODULE_ALIAS
  2013-07-20 19:16 ` [PATCH 3/3] ASoC: wm8962: " Fabio Estevam
@ 2013-07-21 23:54   ` Mark Brown
  0 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2013-07-21 23:54 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Fabio Estevam, alsa-devel, timur


[-- Attachment #1.1: Type: text/plain, Size: 166 bytes --]

On Sat, Jul 20, 2013 at 04:16:03PM -0300, Fabio Estevam wrote:

>  module_i2c_driver(wm8962_i2c_driver);
>  
> +MODULE_ALIAS("platform:wm8962");

Same here...

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [PATCH 1/3] ASoC: fsl: fsl_ssi: Add MODULE_ALIAS
  2013-07-20 19:16 [PATCH 1/3] ASoC: fsl: fsl_ssi: Add MODULE_ALIAS Fabio Estevam
                   ` (2 preceding siblings ...)
  2013-07-20 22:54 ` [PATCH 1/3] ASoC: fsl: fsl_ssi: " Timur Tabi
@ 2013-07-21 23:55 ` Mark Brown
  3 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2013-07-21 23:55 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Fabio Estevam, alsa-devel, timur


[-- Attachment #1.1: Type: text/plain, Size: 200 bytes --]

On Sat, Jul 20, 2013 at 04:16:01PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Add MODULE_ALIAS, so that auto module loading can work.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

end of thread, other threads:[~2013-07-21 23:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-20 19:16 [PATCH 1/3] ASoC: fsl: fsl_ssi: Add MODULE_ALIAS Fabio Estevam
2013-07-20 19:16 ` [PATCH 2/3] ASoC: sgtl5000: " Fabio Estevam
2013-07-21 23:53   ` Mark Brown
2013-07-20 19:16 ` [PATCH 3/3] ASoC: wm8962: " Fabio Estevam
2013-07-21 23:54   ` Mark Brown
2013-07-20 22:54 ` [PATCH 1/3] ASoC: fsl: fsl_ssi: " Timur Tabi
2013-07-21 23:55 ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.