diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-04-24 06:25:00 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-04-24 06:25:00 -0400 |
commit | e9f66d9b9ce03f74a52894cebedf12b67f65dd24 (patch) | |
tree | 6fc07ea37548ac3c9f808ee25c10fcfeb34236ea /sound/pci/als300.c | |
parent | 68853fa30cdb6a9a92f7ab46c34aedb24b2f9d56 (diff) |
ALSA: pci: clean up using module_pci_driver()
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/als300.c')
-rw-r--r-- | sound/pci/als300.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/pci/als300.c b/sound/pci/als300.c index 8196e229b2df..59d65388faf5 100644 --- a/sound/pci/als300.c +++ b/sound/pci/als300.c | |||
@@ -852,7 +852,7 @@ static int __devinit snd_als300_probe(struct pci_dev *pci, | |||
852 | return 0; | 852 | return 0; |
853 | } | 853 | } |
854 | 854 | ||
855 | static struct pci_driver driver = { | 855 | static struct pci_driver als300_driver = { |
856 | .name = KBUILD_MODNAME, | 856 | .name = KBUILD_MODNAME, |
857 | .id_table = snd_als300_ids, | 857 | .id_table = snd_als300_ids, |
858 | .probe = snd_als300_probe, | 858 | .probe = snd_als300_probe, |
@@ -863,15 +863,4 @@ static struct pci_driver driver = { | |||
863 | #endif | 863 | #endif |
864 | }; | 864 | }; |
865 | 865 | ||
866 | static int __init alsa_card_als300_init(void) | 866 | module_pci_driver(als300_driver); |
867 | { | ||
868 | return pci_register_driver(&driver); | ||
869 | } | ||
870 | |||
871 | static void __exit alsa_card_als300_exit(void) | ||
872 | { | ||
873 | pci_unregister_driver(&driver); | ||
874 | } | ||
875 | |||
876 | module_init(alsa_card_als300_init) | ||
877 | module_exit(alsa_card_als300_exit) | ||