Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1410388 > unrolled thread

[PATCH 08/11] ALSA: gusclassic: Utilize the module_isa_driver macro

Started byWilliam Breathitt Gray <vilhelm.gray@gmail.com>
First post2016-05-31 18:00 +0200
Last post2016-05-31 18:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 08/11] ALSA: gusclassic: Utilize the module_isa_driver macro William Breathitt Gray <vilhelm.gray@gmail.com> - 2016-05-31 18:00 +0200

#1410388 — [PATCH 08/11] ALSA: gusclassic: Utilize the module_isa_driver macro

FromWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Date2016-05-31 18:00 +0200
Subject[PATCH 08/11] ALSA: gusclassic: Utilize the module_isa_driver macro
Message-ID<rEUff-4Bu-7@gated-at.bofh.it>
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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web