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/nm256 | |
parent | 68853fa30cdb6a9a92f7ab46c34aedb24b2f9d56 (diff) |
ALSA: pci: clean up using module_pci_driver()
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/nm256')
-rw-r--r-- | sound/pci/nm256/nm256.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/sound/pci/nm256/nm256.c b/sound/pci/nm256/nm256.c index ade2c64bd606..8159b05ee94d 100644 --- a/sound/pci/nm256/nm256.c +++ b/sound/pci/nm256/nm256.c | |||
@@ -1742,7 +1742,7 @@ static void __devexit snd_nm256_remove(struct pci_dev *pci) | |||
1742 | } | 1742 | } |
1743 | 1743 | ||
1744 | 1744 | ||
1745 | static struct pci_driver driver = { | 1745 | static struct pci_driver nm256_driver = { |
1746 | .name = KBUILD_MODNAME, | 1746 | .name = KBUILD_MODNAME, |
1747 | .id_table = snd_nm256_ids, | 1747 | .id_table = snd_nm256_ids, |
1748 | .probe = snd_nm256_probe, | 1748 | .probe = snd_nm256_probe, |
@@ -1753,16 +1753,4 @@ static struct pci_driver driver = { | |||
1753 | #endif | 1753 | #endif |
1754 | }; | 1754 | }; |
1755 | 1755 | ||
1756 | 1756 | module_pci_driver(nm256_driver); | |
1757 | static int __init alsa_card_nm256_init(void) | ||
1758 | { | ||
1759 | return pci_register_driver(&driver); | ||
1760 | } | ||
1761 | |||
1762 | static void __exit alsa_card_nm256_exit(void) | ||
1763 | { | ||
1764 | pci_unregister_driver(&driver); | ||
1765 | } | ||
1766 | |||
1767 | module_init(alsa_card_nm256_init) | ||
1768 | module_exit(alsa_card_nm256_exit) | ||