alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] ALSA: Utilize the module_isa_driver macro
@ 2016-05-31 15:54 William Breathitt Gray
  2016-05-31 15:54 ` [PATCH 01/11] ALSA: sb8: " William Breathitt Gray
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:54 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

The module_isa_driver macro is a helper macro for ISA drivers which do
not do anything special in module init/exit. This patchset eliminates a
lot of ISA driver registration boilerplate code by utilizing
module_isa_driver, which replaces module_init and module_exit.

William Breathitt Gray (11):
  ALSA: sb8: Utilize the module_isa_driver macro
  ALSA: jazz16: Utilize the module_isa_driver macro
  ALSA: ad1848: Utilize the module_isa_driver macro
  ALSA: cmi8328: Utilize the module_isa_driver macro
  ALSA: cs4231: Utilize the module_isa_driver macro
  ALSA: gusmax: Utilize the module_isa_driver macro
  ALSA: gusextreme: Utilize the module_isa_driver macro
  ALSA: gusclassic: Utilize the module_isa_driver macro
  ALSA: sc6000: Utilize the module_isa_driver macro
  ALSA: galaxy: Utilize the module_isa_driver macro
  ALSA: adlib: Utilize the module_isa_driver macro

 sound/isa/ad1848/ad1848.c  | 13 +------------
 sound/isa/adlib.c          | 13 +------------
 sound/isa/cmi8328.c        | 13 +------------
 sound/isa/cs423x/cs4231.c  | 13 +------------
 sound/isa/galaxy/galaxy.c  | 13 +------------
 sound/isa/gus/gusclassic.c | 13 +------------
 sound/isa/gus/gusextreme.c | 13 +------------
 sound/isa/gus/gusmax.c     | 13 +------------
 sound/isa/sb/jazz16.c      | 13 +------------
 sound/isa/sb/sb8.c         | 13 +------------
 sound/isa/sc6000.c         | 13 +------------
 11 files changed, 11 insertions(+), 132 deletions(-)

-- 
2.7.3

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

* [PATCH 01/11] ALSA: sb8: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
@ 2016-05-31 15:54 ` William Breathitt Gray
  2016-05-31 15:54 ` [PATCH 02/11] ALSA: jazz16: " William Breathitt Gray
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:54 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/sb/sb8.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c
index b8e2391..ad42d23 100644
--- a/sound/isa/sb/sb8.c
+++ b/sound/isa/sb/sb8.c
@@ -251,15 +251,4 @@ static struct isa_driver snd_sb8_driver = {
 	},
 };
 
-static int __init alsa_card_sb8_init(void)
-{
-	return isa_register_driver(&snd_sb8_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_sb8_exit(void)
-{
-	isa_unregister_driver(&snd_sb8_driver);
-}
-
-module_init(alsa_card_sb8_init)
-module_exit(alsa_card_sb8_exit)
+module_isa_driver(snd_sb8_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 02/11] ALSA: jazz16: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
  2016-05-31 15:54 ` [PATCH 01/11] ALSA: sb8: " William Breathitt Gray
@ 2016-05-31 15:54 ` William Breathitt Gray
  2016-05-31 15:55 ` [PATCH 03/11] ALSA: ad1848: " William Breathitt Gray
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:54 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/sb/jazz16.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/sb/jazz16.c b/sound/isa/sb/jazz16.c
index 6b4884d..4d90997 100644
--- a/sound/isa/sb/jazz16.c
+++ b/sound/isa/sb/jazz16.c
@@ -387,15 +387,4 @@ static struct isa_driver snd_jazz16_driver = {
 	},
 };
 
-static int __init alsa_card_jazz16_init(void)
-{
-	return isa_register_driver(&snd_jazz16_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_jazz16_exit(void)
-{
-	isa_unregister_driver(&snd_jazz16_driver);
-}
-
-module_init(alsa_card_jazz16_init)
-module_exit(alsa_card_jazz16_exit)
+module_isa_driver(snd_jazz16_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 03/11] ALSA: ad1848: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
  2016-05-31 15:54 ` [PATCH 01/11] ALSA: sb8: " William Breathitt Gray
  2016-05-31 15:54 ` [PATCH 02/11] ALSA: jazz16: " William Breathitt Gray
@ 2016-05-31 15:55 ` William Breathitt Gray
  2016-05-31 15:55 ` [PATCH 04/11] ALSA: cmi8328: " William Breathitt Gray
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:55 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/ad1848/ad1848.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/ad1848/ad1848.c b/sound/isa/ad1848/ad1848.c
index f159da4e..a302d1f 100644
--- a/sound/isa/ad1848/ad1848.c
+++ b/sound/isa/ad1848/ad1848.c
@@ -170,15 +170,4 @@ static struct isa_driver snd_ad1848_driver = {
 	}
 };
 
-static int __init alsa_card_ad1848_init(void)
-{
-	return isa_register_driver(&snd_ad1848_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_ad1848_exit(void)
-{
-	isa_unregister_driver(&snd_ad1848_driver);
-}
-
-module_init(alsa_card_ad1848_init);
-module_exit(alsa_card_ad1848_exit);
+module_isa_driver(snd_ad1848_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 04/11] ALSA: cmi8328: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (2 preceding siblings ...)
  2016-05-31 15:55 ` [PATCH 03/11] ALSA: ad1848: " William Breathitt Gray
@ 2016-05-31 15:55 ` William Breathitt Gray
  2016-05-31 15:55 ` [PATCH 05/11] ALSA: cs4231: " William Breathitt Gray
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:55 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/cmi8328.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/cmi8328.c b/sound/isa/cmi8328.c
index 2c89d95..7874750 100644
--- a/sound/isa/cmi8328.c
+++ b/sound/isa/cmi8328.c
@@ -469,15 +469,4 @@ static struct isa_driver snd_cmi8328_driver = {
 	},
 };
 
-static int __init alsa_card_cmi8328_init(void)
-{
-	return isa_register_driver(&snd_cmi8328_driver, CMI8328_MAX);
-}
-
-static void __exit alsa_card_cmi8328_exit(void)
-{
-	isa_unregister_driver(&snd_cmi8328_driver);
-}
-
-module_init(alsa_card_cmi8328_init)
-module_exit(alsa_card_cmi8328_exit)
+module_isa_driver(snd_cmi8328_driver, CMI8328_MAX);
-- 
2.7.3

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

* [PATCH 05/11] ALSA: cs4231: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (3 preceding siblings ...)
  2016-05-31 15:55 ` [PATCH 04/11] ALSA: cmi8328: " William Breathitt Gray
@ 2016-05-31 15:55 ` William Breathitt Gray
  2016-05-31 15:55 ` [PATCH 06/11] ALSA: gusmax: " William Breathitt Gray
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:55 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/cs423x/cs4231.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/cs423x/cs4231.c b/sound/isa/cs423x/cs4231.c
index 282cd75..ef7448e 100644
--- a/sound/isa/cs423x/cs4231.c
+++ b/sound/isa/cs423x/cs4231.c
@@ -186,15 +186,4 @@ static struct isa_driver snd_cs4231_driver = {
 	}
 };
 
-static int __init alsa_card_cs4231_init(void)
-{
-	return isa_register_driver(&snd_cs4231_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_cs4231_exit(void)
-{
-	isa_unregister_driver(&snd_cs4231_driver);
-}
-
-module_init(alsa_card_cs4231_init);
-module_exit(alsa_card_cs4231_exit);
+module_isa_driver(snd_cs4231_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 06/11] ALSA: gusmax: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (4 preceding siblings ...)
  2016-05-31 15:55 ` [PATCH 05/11] ALSA: cs4231: " William Breathitt Gray
@ 2016-05-31 15:55 ` William Breathitt Gray
  2016-05-31 15:55 ` [PATCH 07/11] ALSA: gusextreme: " William Breathitt Gray
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:55 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/gus/gusmax.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/gus/gusmax.c b/sound/isa/gus/gusmax.c
index 8216e8d..dd88c9d 100644
--- a/sound/isa/gus/gusmax.c
+++ b/sound/isa/gus/gusmax.c
@@ -370,15 +370,4 @@ static struct isa_driver snd_gusmax_driver = {
 	},
 };
 
-static int __init alsa_card_gusmax_init(void)
-{
-	return isa_register_driver(&snd_gusmax_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_gusmax_exit(void)
-{
-	isa_unregister_driver(&snd_gusmax_driver);
-}
-
-module_init(alsa_card_gusmax_init)
-module_exit(alsa_card_gusmax_exit)
+module_isa_driver(snd_gusmax_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 07/11] ALSA: gusextreme: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (5 preceding siblings ...)
  2016-05-31 15:55 ` [PATCH 06/11] ALSA: gusmax: " William Breathitt Gray
@ 2016-05-31 15:55 ` William Breathitt Gray
  2016-05-31 15:56 ` [PATCH 08/11] ALSA: gusclassic: " William Breathitt Gray
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:55 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/gus/gusextreme.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/gus/gusextreme.c b/sound/isa/gus/gusextreme.c
index 693d95f..77ac2fd 100644
--- a/sound/isa/gus/gusextreme.c
+++ b/sound/isa/gus/gusextreme.c
@@ -358,15 +358,4 @@ static struct isa_driver snd_gusextreme_driver = {
 	}
 };
 
-static int __init alsa_card_gusextreme_init(void)
-{
-	return isa_register_driver(&snd_gusextreme_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_gusextreme_exit(void)
-{
-	isa_unregister_driver(&snd_gusextreme_driver);
-}
-
-module_init(alsa_card_gusextreme_init);
-module_exit(alsa_card_gusextreme_exit);
+module_isa_driver(snd_gusextreme_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 08/11] ALSA: gusclassic: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (6 preceding siblings ...)
  2016-05-31 15:55 ` [PATCH 07/11] ALSA: gusextreme: " William Breathitt Gray
@ 2016-05-31 15:56 ` William Breathitt Gray
  2016-05-31 15:56 ` [PATCH 09/11] ALSA: sc6000: " William Breathitt Gray
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:56 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/gus/gusclassic.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/gus/gusclassic.c b/sound/isa/gus/gusclassic.c
index f001971..c169be4 100644
--- a/sound/isa/gus/gusclassic.c
+++ b/sound/isa/gus/gusclassic.c
@@ -229,15 +229,4 @@ static struct isa_driver snd_gusclassic_driver = {
 	}
 };
 
-static int __init alsa_card_gusclassic_init(void)
-{
-	return isa_register_driver(&snd_gusclassic_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_gusclassic_exit(void)
-{
-	isa_unregister_driver(&snd_gusclassic_driver);
-}
-
-module_init(alsa_card_gusclassic_init);
-module_exit(alsa_card_gusclassic_exit);
+module_isa_driver(snd_gusclassic_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 09/11] ALSA: sc6000: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (7 preceding siblings ...)
  2016-05-31 15:56 ` [PATCH 08/11] ALSA: gusclassic: " William Breathitt Gray
@ 2016-05-31 15:56 ` William Breathitt Gray
  2016-05-31 15:56 ` [PATCH 10/11] ALSA: galaxy: " William Breathitt Gray
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:56 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/sc6000.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/sc6000.c b/sound/isa/sc6000.c
index 51cfa76..b61a663 100644
--- a/sound/isa/sc6000.c
+++ b/sound/isa/sc6000.c
@@ -711,15 +711,4 @@ static struct isa_driver snd_sc6000_driver = {
 };
 
 
-static int __init alsa_card_sc6000_init(void)
-{
-	return isa_register_driver(&snd_sc6000_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_sc6000_exit(void)
-{
-	isa_unregister_driver(&snd_sc6000_driver);
-}
-
-module_init(alsa_card_sc6000_init)
-module_exit(alsa_card_sc6000_exit)
+module_isa_driver(snd_sc6000_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 10/11] ALSA: galaxy: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (8 preceding siblings ...)
  2016-05-31 15:56 ` [PATCH 09/11] ALSA: sc6000: " William Breathitt Gray
@ 2016-05-31 15:56 ` William Breathitt Gray
  2016-05-31 15:56 ` [PATCH 11/11] ALSA: adlib: " William Breathitt Gray
  2016-06-01  5:36 ` [PATCH 00/11] ALSA: " Takashi Iwai
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:56 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/galaxy/galaxy.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/galaxy/galaxy.c b/sound/isa/galaxy/galaxy.c
index 3227884..379abe2 100644
--- a/sound/isa/galaxy/galaxy.c
+++ b/sound/isa/galaxy/galaxy.c
@@ -634,15 +634,4 @@ static struct isa_driver snd_galaxy_driver = {
 	}
 };
 
-static int __init alsa_card_galaxy_init(void)
-{
-	return isa_register_driver(&snd_galaxy_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_galaxy_exit(void)
-{
-	isa_unregister_driver(&snd_galaxy_driver);
-}
-
-module_init(alsa_card_galaxy_init);
-module_exit(alsa_card_galaxy_exit);
+module_isa_driver(snd_galaxy_driver, SNDRV_CARDS);
-- 
2.7.3

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

* [PATCH 11/11] ALSA: adlib: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (9 preceding siblings ...)
  2016-05-31 15:56 ` [PATCH 10/11] ALSA: galaxy: " William Breathitt Gray
@ 2016-05-31 15:56 ` William Breathitt Gray
  2016-06-01  5:36 ` [PATCH 00/11] ALSA: " Takashi Iwai
  11 siblings, 0 replies; 13+ messages in thread
From: William Breathitt Gray @ 2016-05-31 15:56 UTC (permalink / raw)
  To: perex, tiwai; +Cc: alsa-devel, linux-kernel, William Breathitt Gray

This driver does not do anything special in module init/exit. This patch
eliminates the module init/exit boilerplate code by utilizing the
module_isa_driver macro.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
---
 sound/isa/adlib.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/sound/isa/adlib.c b/sound/isa/adlib.c
index 120c524..8d3060f 100644
--- a/sound/isa/adlib.c
+++ b/sound/isa/adlib.c
@@ -112,15 +112,4 @@ static struct isa_driver snd_adlib_driver = {
 	}
 };
 
-static int __init alsa_card_adlib_init(void)
-{
-	return isa_register_driver(&snd_adlib_driver, SNDRV_CARDS);
-}
-
-static void __exit alsa_card_adlib_exit(void)
-{
-	isa_unregister_driver(&snd_adlib_driver);
-}
-
-module_init(alsa_card_adlib_init);
-module_exit(alsa_card_adlib_exit);
+module_isa_driver(snd_adlib_driver, SNDRV_CARDS);
-- 
2.7.3

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

* Re: [PATCH 00/11] ALSA: Utilize the module_isa_driver macro
  2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
                   ` (10 preceding siblings ...)
  2016-05-31 15:56 ` [PATCH 11/11] ALSA: adlib: " William Breathitt Gray
@ 2016-06-01  5:36 ` Takashi Iwai
  11 siblings, 0 replies; 13+ messages in thread
From: Takashi Iwai @ 2016-06-01  5:36 UTC (permalink / raw)
  To: William Breathitt Gray; +Cc: perex, alsa-devel, linux-kernel

On Tue, 31 May 2016 17:54:16 +0200,
William Breathitt Gray wrote:
> 
> The module_isa_driver macro is a helper macro for ISA drivers which do
> not do anything special in module init/exit. This patchset eliminates a
> lot of ISA driver registration boilerplate code by utilizing
> module_isa_driver, which replaces module_init and module_exit.
> 
> William Breathitt Gray (11):
>   ALSA: sb8: Utilize the module_isa_driver macro
>   ALSA: jazz16: Utilize the module_isa_driver macro
>   ALSA: ad1848: Utilize the module_isa_driver macro
>   ALSA: cmi8328: Utilize the module_isa_driver macro
>   ALSA: cs4231: Utilize the module_isa_driver macro
>   ALSA: gusmax: Utilize the module_isa_driver macro
>   ALSA: gusextreme: Utilize the module_isa_driver macro
>   ALSA: gusclassic: Utilize the module_isa_driver macro
>   ALSA: sc6000: Utilize the module_isa_driver macro
>   ALSA: galaxy: Utilize the module_isa_driver macro
>   ALSA: adlib: Utilize the module_isa_driver macro

Thanks, applied all patches now.


Takashi

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

end of thread, other threads:[~2016-06-01  5:36 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-31 15:54 [PATCH 00/11] ALSA: Utilize the module_isa_driver macro William Breathitt Gray
2016-05-31 15:54 ` [PATCH 01/11] ALSA: sb8: " William Breathitt Gray
2016-05-31 15:54 ` [PATCH 02/11] ALSA: jazz16: " William Breathitt Gray
2016-05-31 15:55 ` [PATCH 03/11] ALSA: ad1848: " William Breathitt Gray
2016-05-31 15:55 ` [PATCH 04/11] ALSA: cmi8328: " William Breathitt Gray
2016-05-31 15:55 ` [PATCH 05/11] ALSA: cs4231: " William Breathitt Gray
2016-05-31 15:55 ` [PATCH 06/11] ALSA: gusmax: " William Breathitt Gray
2016-05-31 15:55 ` [PATCH 07/11] ALSA: gusextreme: " William Breathitt Gray
2016-05-31 15:56 ` [PATCH 08/11] ALSA: gusclassic: " William Breathitt Gray
2016-05-31 15:56 ` [PATCH 09/11] ALSA: sc6000: " William Breathitt Gray
2016-05-31 15:56 ` [PATCH 10/11] ALSA: galaxy: " William Breathitt Gray
2016-05-31 15:56 ` [PATCH 11/11] ALSA: adlib: " William Breathitt Gray
2016-06-01  5:36 ` [PATCH 00/11] ALSA: " Takashi Iwai

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