diff options
52 files changed, 53 insertions, 53 deletions
diff --git a/sound/pci/ad1889.c b/sound/pci/ad1889.c index d8f6fd65ebbb..fe617ee93214 100644 --- a/sound/pci/ad1889.c +++ b/sound/pci/ad1889.c | |||
@@ -1055,7 +1055,7 @@ static DEFINE_PCI_DEVICE_TABLE(snd_ad1889_ids) = { | |||
1055 | MODULE_DEVICE_TABLE(pci, snd_ad1889_ids); | 1055 | MODULE_DEVICE_TABLE(pci, snd_ad1889_ids); |
1056 | 1056 | ||
1057 | static struct pci_driver ad1889_pci_driver = { | 1057 | static struct pci_driver ad1889_pci_driver = { |
1058 | .name = "AD1889 Audio", | 1058 | .name = KBUILD_MODNAME, |
1059 | .id_table = snd_ad1889_ids, | 1059 | .id_table = snd_ad1889_ids, |
1060 | .probe = snd_ad1889_probe, | 1060 | .probe = snd_ad1889_probe, |
1061 | .remove = __devexit_p(snd_ad1889_remove), | 1061 | .remove = __devexit_p(snd_ad1889_remove), |
diff --git a/sound/pci/ali5451/ali5451.c b/sound/pci/ali5451/ali5451.c index 5c6e322a48f0..2def167d7df6 100644 --- a/sound/pci/ali5451/ali5451.c +++ b/sound/pci/ali5451/ali5451.c | |||
@@ -2295,7 +2295,7 @@ static void __devexit snd_ali_remove(struct pci_dev *pci) | |||
2295 | } | 2295 | } |
2296 | 2296 | ||
2297 | static struct pci_driver driver = { | 2297 | static struct pci_driver driver = { |
2298 | .name = "ALI 5451", | 2298 | .name = KBUILD_MODNAME, |
2299 | .id_table = snd_ali_ids, | 2299 | .id_table = snd_ali_ids, |
2300 | .probe = snd_ali_probe, | 2300 | .probe = snd_ali_probe, |
2301 | .remove = __devexit_p(snd_ali_remove), | 2301 | .remove = __devexit_p(snd_ali_remove), |
diff --git a/sound/pci/als300.c b/sound/pci/als300.c index d7653cb7ac60..0958daccd15e 100644 --- a/sound/pci/als300.c +++ b/sound/pci/als300.c | |||
@@ -846,7 +846,7 @@ static int __devinit snd_als300_probe(struct pci_dev *pci, | |||
846 | } | 846 | } |
847 | 847 | ||
848 | static struct pci_driver driver = { | 848 | static struct pci_driver driver = { |
849 | .name = "ALS300", | 849 | .name = KBUILD_MODNAME, |
850 | .id_table = snd_als300_ids, | 850 | .id_table = snd_als300_ids, |
851 | .probe = snd_als300_probe, | 851 | .probe = snd_als300_probe, |
852 | .remove = __devexit_p(snd_als300_remove), | 852 | .remove = __devexit_p(snd_als300_remove), |
diff --git a/sound/pci/als4000.c b/sound/pci/als4000.c index 0e247cb90ecc..a9c1af33f276 100644 --- a/sound/pci/als4000.c +++ b/sound/pci/als4000.c | |||
@@ -1036,7 +1036,7 @@ static int snd_als4000_resume(struct pci_dev *pci) | |||
1036 | 1036 | ||
1037 | 1037 | ||
1038 | static struct pci_driver driver = { | 1038 | static struct pci_driver driver = { |
1039 | .name = "ALS4000", | 1039 | .name = KBUILD_MODNAME, |
1040 | .id_table = snd_als4000_ids, | 1040 | .id_table = snd_als4000_ids, |
1041 | .probe = snd_card_als4000_probe, | 1041 | .probe = snd_card_als4000_probe, |
1042 | .remove = __devexit_p(snd_card_als4000_remove), | 1042 | .remove = __devexit_p(snd_card_als4000_remove), |
diff --git a/sound/pci/asihpi/asihpi.c b/sound/pci/asihpi/asihpi.c index 2ca6f4f85b41..ddf882ed1dfb 100644 --- a/sound/pci/asihpi/asihpi.c +++ b/sound/pci/asihpi/asihpi.c | |||
@@ -2924,7 +2924,7 @@ static DEFINE_PCI_DEVICE_TABLE(asihpi_pci_tbl) = { | |||
2924 | MODULE_DEVICE_TABLE(pci, asihpi_pci_tbl); | 2924 | MODULE_DEVICE_TABLE(pci, asihpi_pci_tbl); |
2925 | 2925 | ||
2926 | static struct pci_driver driver = { | 2926 | static struct pci_driver driver = { |
2927 | .name = "asihpi", | 2927 | .name = KBUILD_MODNAME, |
2928 | .id_table = asihpi_pci_tbl, | 2928 | .id_table = asihpi_pci_tbl, |
2929 | .probe = snd_asihpi_probe, | 2929 | .probe = snd_asihpi_probe, |
2930 | .remove = __devexit_p(snd_asihpi_remove), | 2930 | .remove = __devexit_p(snd_asihpi_remove), |
diff --git a/sound/pci/atiixp.c b/sound/pci/atiixp.c index 3119cd97a217..550b574b4734 100644 --- a/sound/pci/atiixp.c +++ b/sound/pci/atiixp.c | |||
@@ -1701,7 +1701,7 @@ static void __devexit snd_atiixp_remove(struct pci_dev *pci) | |||
1701 | } | 1701 | } |
1702 | 1702 | ||
1703 | static struct pci_driver driver = { | 1703 | static struct pci_driver driver = { |
1704 | .name = "ATI IXP AC97 controller", | 1704 | .name = KBUILD_MODNAME, |
1705 | .id_table = snd_atiixp_ids, | 1705 | .id_table = snd_atiixp_ids, |
1706 | .probe = snd_atiixp_probe, | 1706 | .probe = snd_atiixp_probe, |
1707 | .remove = __devexit_p(snd_atiixp_remove), | 1707 | .remove = __devexit_p(snd_atiixp_remove), |
diff --git a/sound/pci/atiixp_modem.c b/sound/pci/atiixp_modem.c index 2f74c2fdf1ea..2fef550bef94 100644 --- a/sound/pci/atiixp_modem.c +++ b/sound/pci/atiixp_modem.c | |||
@@ -1332,7 +1332,7 @@ static void __devexit snd_atiixp_remove(struct pci_dev *pci) | |||
1332 | } | 1332 | } |
1333 | 1333 | ||
1334 | static struct pci_driver driver = { | 1334 | static struct pci_driver driver = { |
1335 | .name = "ATI IXP MC97 controller", | 1335 | .name = KBUILD_MODNAME, |
1336 | .id_table = snd_atiixp_ids, | 1336 | .id_table = snd_atiixp_ids, |
1337 | .probe = snd_atiixp_probe, | 1337 | .probe = snd_atiixp_probe, |
1338 | .remove = __devexit_p(snd_atiixp_remove), | 1338 | .remove = __devexit_p(snd_atiixp_remove), |
diff --git a/sound/pci/au88x0/au88x0.c b/sound/pci/au88x0/au88x0.c index 7b72c88e449d..4933e4e9ac87 100644 --- a/sound/pci/au88x0/au88x0.c +++ b/sound/pci/au88x0/au88x0.c | |||
@@ -375,7 +375,7 @@ static void __devexit snd_vortex_remove(struct pci_dev *pci) | |||
375 | 375 | ||
376 | // pci_driver definition | 376 | // pci_driver definition |
377 | static struct pci_driver driver = { | 377 | static struct pci_driver driver = { |
378 | .name = CARD_NAME_SHORT, | 378 | .name = KBUILD_MODNAME, |
379 | .id_table = snd_vortex_ids, | 379 | .id_table = snd_vortex_ids, |
380 | .probe = snd_vortex_probe, | 380 | .probe = snd_vortex_probe, |
381 | .remove = __devexit_p(snd_vortex_remove), | 381 | .remove = __devexit_p(snd_vortex_remove), |
diff --git a/sound/pci/aw2/aw2-alsa.c b/sound/pci/aw2/aw2-alsa.c index c15002242d98..8410edb5fbaf 100644 --- a/sound/pci/aw2/aw2-alsa.c +++ b/sound/pci/aw2/aw2-alsa.c | |||
@@ -171,7 +171,7 @@ MODULE_DEVICE_TABLE(pci, snd_aw2_ids); | |||
171 | 171 | ||
172 | /* pci_driver definition */ | 172 | /* pci_driver definition */ |
173 | static struct pci_driver driver = { | 173 | static struct pci_driver driver = { |
174 | .name = "Emagic Audiowerk 2", | 174 | .name = KBUILD_MODNAME, |
175 | .id_table = snd_aw2_ids, | 175 | .id_table = snd_aw2_ids, |
176 | .probe = snd_aw2_probe, | 176 | .probe = snd_aw2_probe, |
177 | .remove = __devexit_p(snd_aw2_remove), | 177 | .remove = __devexit_p(snd_aw2_remove), |
diff --git a/sound/pci/azt3328.c b/sound/pci/azt3328.c index 9b7a6346037a..71d3525719fc 100644 --- a/sound/pci/azt3328.c +++ b/sound/pci/azt3328.c | |||
@@ -2860,7 +2860,7 @@ snd_azf3328_resume(struct pci_dev *pci) | |||
2860 | 2860 | ||
2861 | 2861 | ||
2862 | static struct pci_driver driver = { | 2862 | static struct pci_driver driver = { |
2863 | .name = "AZF3328", | 2863 | .name = KBUILD_MODNAME, |
2864 | .id_table = snd_azf3328_ids, | 2864 | .id_table = snd_azf3328_ids, |
2865 | .probe = snd_azf3328_probe, | 2865 | .probe = snd_azf3328_probe, |
2866 | .remove = __devexit_p(snd_azf3328_remove), | 2866 | .remove = __devexit_p(snd_azf3328_remove), |
diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c index 2958a05b5293..89428099d811 100644 --- a/sound/pci/bt87x.c +++ b/sound/pci/bt87x.c | |||
@@ -965,7 +965,7 @@ static DEFINE_PCI_DEVICE_TABLE(snd_bt87x_default_ids) = { | |||
965 | }; | 965 | }; |
966 | 966 | ||
967 | static struct pci_driver driver = { | 967 | static struct pci_driver driver = { |
968 | .name = "Bt87x", | 968 | .name = KBUILD_MODNAME, |
969 | .id_table = snd_bt87x_ids, | 969 | .id_table = snd_bt87x_ids, |
970 | .probe = snd_bt87x_probe, | 970 | .probe = snd_bt87x_probe, |
971 | .remove = __devexit_p(snd_bt87x_remove), | 971 | .remove = __devexit_p(snd_bt87x_remove), |
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c index 437759239694..620787509339 100644 --- a/sound/pci/ca0106/ca0106_main.c +++ b/sound/pci/ca0106/ca0106_main.c | |||
@@ -1933,7 +1933,7 @@ MODULE_DEVICE_TABLE(pci, snd_ca0106_ids); | |||
1933 | 1933 | ||
1934 | // pci_driver definition | 1934 | // pci_driver definition |
1935 | static struct pci_driver driver = { | 1935 | static struct pci_driver driver = { |
1936 | .name = "CA0106", | 1936 | .name = KBUILD_MODNAME, |
1937 | .id_table = snd_ca0106_ids, | 1937 | .id_table = snd_ca0106_ids, |
1938 | .probe = snd_ca0106_probe, | 1938 | .probe = snd_ca0106_probe, |
1939 | .remove = __devexit_p(snd_ca0106_remove), | 1939 | .remove = __devexit_p(snd_ca0106_remove), |
diff --git a/sound/pci/cmipci.c b/sound/pci/cmipci.c index f4e573555da3..84af5bece127 100644 --- a/sound/pci/cmipci.c +++ b/sound/pci/cmipci.c | |||
@@ -3398,7 +3398,7 @@ static int snd_cmipci_resume(struct pci_dev *pci) | |||
3398 | #endif /* CONFIG_PM */ | 3398 | #endif /* CONFIG_PM */ |
3399 | 3399 | ||
3400 | static struct pci_driver driver = { | 3400 | static struct pci_driver driver = { |
3401 | .name = "C-Media PCI", | 3401 | .name = KBUILD_MODNAME, |
3402 | .id_table = snd_cmipci_ids, | 3402 | .id_table = snd_cmipci_ids, |
3403 | .probe = snd_cmipci_probe, | 3403 | .probe = snd_cmipci_probe, |
3404 | .remove = __devexit_p(snd_cmipci_remove), | 3404 | .remove = __devexit_p(snd_cmipci_remove), |
diff --git a/sound/pci/cs4281.c b/sound/pci/cs4281.c index 6772070ed492..67052d9069cf 100644 --- a/sound/pci/cs4281.c +++ b/sound/pci/cs4281.c | |||
@@ -2085,7 +2085,7 @@ static int cs4281_resume(struct pci_dev *pci) | |||
2085 | #endif /* CONFIG_PM */ | 2085 | #endif /* CONFIG_PM */ |
2086 | 2086 | ||
2087 | static struct pci_driver driver = { | 2087 | static struct pci_driver driver = { |
2088 | .name = "CS4281", | 2088 | .name = KBUILD_MODNAME, |
2089 | .id_table = snd_cs4281_ids, | 2089 | .id_table = snd_cs4281_ids, |
2090 | .probe = snd_cs4281_probe, | 2090 | .probe = snd_cs4281_probe, |
2091 | .remove = __devexit_p(snd_cs4281_remove), | 2091 | .remove = __devexit_p(snd_cs4281_remove), |
diff --git a/sound/pci/cs46xx/cs46xx.c b/sound/pci/cs46xx/cs46xx.c index 767fa7f06cd0..1af95559aaaa 100644 --- a/sound/pci/cs46xx/cs46xx.c +++ b/sound/pci/cs46xx/cs46xx.c | |||
@@ -162,7 +162,7 @@ static void __devexit snd_card_cs46xx_remove(struct pci_dev *pci) | |||
162 | } | 162 | } |
163 | 163 | ||
164 | static struct pci_driver driver = { | 164 | static struct pci_driver driver = { |
165 | .name = "Sound Fusion CS46xx", | 165 | .name = KBUILD_MODNAME, |
166 | .id_table = snd_cs46xx_ids, | 166 | .id_table = snd_cs46xx_ids, |
167 | .probe = snd_card_cs46xx_probe, | 167 | .probe = snd_card_cs46xx_probe, |
168 | .remove = __devexit_p(snd_card_cs46xx_remove), | 168 | .remove = __devexit_p(snd_card_cs46xx_remove), |
diff --git a/sound/pci/cs5530.c b/sound/pci/cs5530.c index bc07e275d4d4..a4669346d146 100644 --- a/sound/pci/cs5530.c +++ b/sound/pci/cs5530.c | |||
@@ -285,7 +285,7 @@ static int __devinit snd_cs5530_probe(struct pci_dev *pci, | |||
285 | } | 285 | } |
286 | 286 | ||
287 | static struct pci_driver driver = { | 287 | static struct pci_driver driver = { |
288 | .name = "CS5530_Audio", | 288 | .name = KBUILD_MODNAME, |
289 | .id_table = snd_cs5530_ids, | 289 | .id_table = snd_cs5530_ids, |
290 | .probe = snd_cs5530_probe, | 290 | .probe = snd_cs5530_probe, |
291 | .remove = __devexit_p(snd_cs5530_remove), | 291 | .remove = __devexit_p(snd_cs5530_remove), |
diff --git a/sound/pci/cs5535audio/cs5535audio.c b/sound/pci/cs5535audio/cs5535audio.c index afb803708416..a6a877747e71 100644 --- a/sound/pci/cs5535audio/cs5535audio.c +++ b/sound/pci/cs5535audio/cs5535audio.c | |||
@@ -395,7 +395,7 @@ static void __devexit snd_cs5535audio_remove(struct pci_dev *pci) | |||
395 | } | 395 | } |
396 | 396 | ||
397 | static struct pci_driver driver = { | 397 | static struct pci_driver driver = { |
398 | .name = DRIVER_NAME, | 398 | .name = KBUILD_MODNAME, |
399 | .id_table = snd_cs5535audio_ids, | 399 | .id_table = snd_cs5535audio_ids, |
400 | .probe = snd_cs5535audio_probe, | 400 | .probe = snd_cs5535audio_probe, |
401 | .remove = __devexit_p(snd_cs5535audio_remove), | 401 | .remove = __devexit_p(snd_cs5535audio_remove), |
diff --git a/sound/pci/ctxfi/xfi.c b/sound/pci/ctxfi/xfi.c index f42e7e1a1074..d20ddfee2c1f 100644 --- a/sound/pci/ctxfi/xfi.c +++ b/sound/pci/ctxfi/xfi.c | |||
@@ -143,7 +143,7 @@ static int ct_card_resume(struct pci_dev *pci) | |||
143 | #endif | 143 | #endif |
144 | 144 | ||
145 | static struct pci_driver ct_driver = { | 145 | static struct pci_driver ct_driver = { |
146 | .name = "SB-XFi", | 146 | .name = KBUILD_MODNAME, |
147 | .id_table = ct_pci_dev_ids, | 147 | .id_table = ct_pci_dev_ids, |
148 | .probe = ct_card_probe, | 148 | .probe = ct_card_probe, |
149 | .remove = __devexit_p(ct_card_remove), | 149 | .remove = __devexit_p(ct_card_remove), |
diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c index 20763dd03fa0..d302e0f39596 100644 --- a/sound/pci/echoaudio/echoaudio.c +++ b/sound/pci/echoaudio/echoaudio.c | |||
@@ -2327,7 +2327,7 @@ static void __devexit snd_echo_remove(struct pci_dev *pci) | |||
2327 | 2327 | ||
2328 | /* pci_driver definition */ | 2328 | /* pci_driver definition */ |
2329 | static struct pci_driver driver = { | 2329 | static struct pci_driver driver = { |
2330 | .name = "Echoaudio " ECHOCARD_NAME, | 2330 | .name = KBUILD_MODNAME, |
2331 | .id_table = snd_echo_ids, | 2331 | .id_table = snd_echo_ids, |
2332 | .probe = snd_echo_probe, | 2332 | .probe = snd_echo_probe, |
2333 | .remove = __devexit_p(snd_echo_remove), | 2333 | .remove = __devexit_p(snd_echo_remove), |
diff --git a/sound/pci/emu10k1/emu10k1.c b/sound/pci/emu10k1/emu10k1.c index aff8387c45cf..a9c45d2cdb13 100644 --- a/sound/pci/emu10k1/emu10k1.c +++ b/sound/pci/emu10k1/emu10k1.c | |||
@@ -264,7 +264,7 @@ static int snd_emu10k1_resume(struct pci_dev *pci) | |||
264 | #endif | 264 | #endif |
265 | 265 | ||
266 | static struct pci_driver driver = { | 266 | static struct pci_driver driver = { |
267 | .name = "EMU10K1_Audigy", | 267 | .name = KBUILD_MODNAME, |
268 | .id_table = snd_emu10k1_ids, | 268 | .id_table = snd_emu10k1_ids, |
269 | .probe = snd_card_emu10k1_probe, | 269 | .probe = snd_card_emu10k1_probe, |
270 | .remove = __devexit_p(snd_card_emu10k1_remove), | 270 | .remove = __devexit_p(snd_card_emu10k1_remove), |
diff --git a/sound/pci/emu10k1/emu10k1x.c b/sound/pci/emu10k1/emu10k1x.c index 0c701e4ec8a5..c9cb73105525 100644 --- a/sound/pci/emu10k1/emu10k1x.c +++ b/sound/pci/emu10k1/emu10k1x.c | |||
@@ -1613,7 +1613,7 @@ MODULE_DEVICE_TABLE(pci, snd_emu10k1x_ids); | |||
1613 | 1613 | ||
1614 | // pci_driver definition | 1614 | // pci_driver definition |
1615 | static struct pci_driver driver = { | 1615 | static struct pci_driver driver = { |
1616 | .name = "EMU10K1X", | 1616 | .name = KBUILD_MODNAME, |
1617 | .id_table = snd_emu10k1x_ids, | 1617 | .id_table = snd_emu10k1x_ids, |
1618 | .probe = snd_emu10k1x_probe, | 1618 | .probe = snd_emu10k1x_probe, |
1619 | .remove = __devexit_p(snd_emu10k1x_remove), | 1619 | .remove = __devexit_p(snd_emu10k1x_remove), |
diff --git a/sound/pci/ens1370.c b/sound/pci/ens1370.c index 863eafea691f..a61dd4229773 100644 --- a/sound/pci/ens1370.c +++ b/sound/pci/ens1370.c | |||
@@ -2489,7 +2489,7 @@ static void __devexit snd_audiopci_remove(struct pci_dev *pci) | |||
2489 | } | 2489 | } |
2490 | 2490 | ||
2491 | static struct pci_driver driver = { | 2491 | static struct pci_driver driver = { |
2492 | .name = DRIVER_NAME, | 2492 | .name = KBUILD_MODNAME, |
2493 | .id_table = snd_audiopci_ids, | 2493 | .id_table = snd_audiopci_ids, |
2494 | .probe = snd_audiopci_probe, | 2494 | .probe = snd_audiopci_probe, |
2495 | .remove = __devexit_p(snd_audiopci_remove), | 2495 | .remove = __devexit_p(snd_audiopci_remove), |
diff --git a/sound/pci/es1938.c b/sound/pci/es1938.c index 553b75217259..84141d16e701 100644 --- a/sound/pci/es1938.c +++ b/sound/pci/es1938.c | |||
@@ -1882,7 +1882,7 @@ static void __devexit snd_es1938_remove(struct pci_dev *pci) | |||
1882 | } | 1882 | } |
1883 | 1883 | ||
1884 | static struct pci_driver driver = { | 1884 | static struct pci_driver driver = { |
1885 | .name = "ESS ES1938 (Solo-1)", | 1885 | .name = KBUILD_MODNAME, |
1886 | .id_table = snd_es1938_ids, | 1886 | .id_table = snd_es1938_ids, |
1887 | .probe = snd_es1938_probe, | 1887 | .probe = snd_es1938_probe, |
1888 | .remove = __devexit_p(snd_es1938_remove), | 1888 | .remove = __devexit_p(snd_es1938_remove), |
diff --git a/sound/pci/es1968.c b/sound/pci/es1968.c index ab0a6156a704..14a2e163fa8c 100644 --- a/sound/pci/es1968.c +++ b/sound/pci/es1968.c | |||
@@ -2925,7 +2925,7 @@ static void __devexit snd_es1968_remove(struct pci_dev *pci) | |||
2925 | } | 2925 | } |
2926 | 2926 | ||
2927 | static struct pci_driver driver = { | 2927 | static struct pci_driver driver = { |
2928 | .name = "ES1968 (ESS Maestro)", | 2928 | .name = KBUILD_MODNAME, |
2929 | .id_table = snd_es1968_ids, | 2929 | .id_table = snd_es1968_ids, |
2930 | .probe = snd_es1968_probe, | 2930 | .probe = snd_es1968_probe, |
2931 | .remove = __devexit_p(snd_es1968_remove), | 2931 | .remove = __devexit_p(snd_es1968_remove), |
diff --git a/sound/pci/fm801.c b/sound/pci/fm801.c index a7ec7030cf87..db3963c4bf88 100644 --- a/sound/pci/fm801.c +++ b/sound/pci/fm801.c | |||
@@ -1394,7 +1394,7 @@ static int snd_fm801_resume(struct pci_dev *pci) | |||
1394 | #endif | 1394 | #endif |
1395 | 1395 | ||
1396 | static struct pci_driver driver = { | 1396 | static struct pci_driver driver = { |
1397 | .name = "FM801", | 1397 | .name = KBUILD_MODNAME, |
1398 | .id_table = snd_fm801_ids, | 1398 | .id_table = snd_fm801_ids, |
1399 | .probe = snd_card_fm801_probe, | 1399 | .probe = snd_card_fm801_probe, |
1400 | .remove = __devexit_p(snd_card_fm801_remove), | 1400 | .remove = __devexit_p(snd_card_fm801_remove), |
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 486f6deb3eee..29f1d36d6cb0 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c | |||
@@ -2908,7 +2908,7 @@ MODULE_DEVICE_TABLE(pci, azx_ids); | |||
2908 | 2908 | ||
2909 | /* pci_driver definition */ | 2909 | /* pci_driver definition */ |
2910 | static struct pci_driver driver = { | 2910 | static struct pci_driver driver = { |
2911 | .name = "HDA Intel", | 2911 | .name = KBUILD_MODNAME, |
2912 | .id_table = azx_ids, | 2912 | .id_table = azx_ids, |
2913 | .probe = azx_probe, | 2913 | .probe = azx_probe, |
2914 | .remove = __devexit_p(azx_remove), | 2914 | .remove = __devexit_p(azx_remove), |
diff --git a/sound/pci/ice1712/ice1712.c b/sound/pci/ice1712/ice1712.c index f4594d76b6ea..7410df93769c 100644 --- a/sound/pci/ice1712/ice1712.c +++ b/sound/pci/ice1712/ice1712.c | |||
@@ -2802,7 +2802,7 @@ static void __devexit snd_ice1712_remove(struct pci_dev *pci) | |||
2802 | } | 2802 | } |
2803 | 2803 | ||
2804 | static struct pci_driver driver = { | 2804 | static struct pci_driver driver = { |
2805 | .name = "ICE1712", | 2805 | .name = KBUILD_MODNAME, |
2806 | .id_table = snd_ice1712_ids, | 2806 | .id_table = snd_ice1712_ids, |
2807 | .probe = snd_ice1712_probe, | 2807 | .probe = snd_ice1712_probe, |
2808 | .remove = __devexit_p(snd_ice1712_remove), | 2808 | .remove = __devexit_p(snd_ice1712_remove), |
diff --git a/sound/pci/ice1712/ice1724.c b/sound/pci/ice1712/ice1724.c index c1498fa5545f..5e7db8dab1a2 100644 --- a/sound/pci/ice1712/ice1724.c +++ b/sound/pci/ice1712/ice1724.c | |||
@@ -2802,7 +2802,7 @@ static int snd_vt1724_resume(struct pci_dev *pci) | |||
2802 | #endif | 2802 | #endif |
2803 | 2803 | ||
2804 | static struct pci_driver driver = { | 2804 | static struct pci_driver driver = { |
2805 | .name = "ICE1724", | 2805 | .name = KBUILD_MODNAME, |
2806 | .id_table = snd_vt1724_ids, | 2806 | .id_table = snd_vt1724_ids, |
2807 | .probe = snd_vt1724_probe, | 2807 | .probe = snd_vt1724_probe, |
2808 | .remove = __devexit_p(snd_vt1724_remove), | 2808 | .remove = __devexit_p(snd_vt1724_remove), |
diff --git a/sound/pci/intel8x0.c b/sound/pci/intel8x0.c index 6c896dbfd796..c01a89b78d43 100644 --- a/sound/pci/intel8x0.c +++ b/sound/pci/intel8x0.c | |||
@@ -3266,7 +3266,7 @@ static void __devexit snd_intel8x0_remove(struct pci_dev *pci) | |||
3266 | } | 3266 | } |
3267 | 3267 | ||
3268 | static struct pci_driver driver = { | 3268 | static struct pci_driver driver = { |
3269 | .name = "Intel ICH", | 3269 | .name = KBUILD_MODNAME, |
3270 | .id_table = snd_intel8x0_ids, | 3270 | .id_table = snd_intel8x0_ids, |
3271 | .probe = snd_intel8x0_probe, | 3271 | .probe = snd_intel8x0_probe, |
3272 | .remove = __devexit_p(snd_intel8x0_remove), | 3272 | .remove = __devexit_p(snd_intel8x0_remove), |
diff --git a/sound/pci/intel8x0m.c b/sound/pci/intel8x0m.c index f3353b49c785..5eed9ebb446b 100644 --- a/sound/pci/intel8x0m.c +++ b/sound/pci/intel8x0m.c | |||
@@ -1325,7 +1325,7 @@ static void __devexit snd_intel8x0m_remove(struct pci_dev *pci) | |||
1325 | } | 1325 | } |
1326 | 1326 | ||
1327 | static struct pci_driver driver = { | 1327 | static struct pci_driver driver = { |
1328 | .name = "Intel ICH Modem", | 1328 | .name = KBUILD_MODNAME, |
1329 | .id_table = snd_intel8x0m_ids, | 1329 | .id_table = snd_intel8x0m_ids, |
1330 | .probe = snd_intel8x0m_probe, | 1330 | .probe = snd_intel8x0m_probe, |
1331 | .remove = __devexit_p(snd_intel8x0m_remove), | 1331 | .remove = __devexit_p(snd_intel8x0m_remove), |
diff --git a/sound/pci/korg1212/korg1212.c b/sound/pci/korg1212/korg1212.c index 6d795700be79..544a6cdfa2d5 100644 --- a/sound/pci/korg1212/korg1212.c +++ b/sound/pci/korg1212/korg1212.c | |||
@@ -2477,7 +2477,7 @@ static void __devexit snd_korg1212_remove(struct pci_dev *pci) | |||
2477 | } | 2477 | } |
2478 | 2478 | ||
2479 | static struct pci_driver driver = { | 2479 | static struct pci_driver driver = { |
2480 | .name = "korg1212", | 2480 | .name = KBUILD_MODNAME, |
2481 | .id_table = snd_korg1212_ids, | 2481 | .id_table = snd_korg1212_ids, |
2482 | .probe = snd_korg1212_probe, | 2482 | .probe = snd_korg1212_probe, |
2483 | .remove = __devexit_p(snd_korg1212_remove), | 2483 | .remove = __devexit_p(snd_korg1212_remove), |
diff --git a/sound/pci/lola/lola.c b/sound/pci/lola/lola.c index 34b24286d279..77c5e8675419 100644 --- a/sound/pci/lola/lola.c +++ b/sound/pci/lola/lola.c | |||
@@ -771,7 +771,7 @@ MODULE_DEVICE_TABLE(pci, lola_ids); | |||
771 | 771 | ||
772 | /* pci_driver definition */ | 772 | /* pci_driver definition */ |
773 | static struct pci_driver driver = { | 773 | static struct pci_driver driver = { |
774 | .name = DRVNAME, | 774 | .name = KBUILD_MODNAME, |
775 | .id_table = lola_ids, | 775 | .id_table = lola_ids, |
776 | .probe = lola_probe, | 776 | .probe = lola_probe, |
777 | .remove = __devexit_p(lola_remove), | 777 | .remove = __devexit_p(lola_remove), |
diff --git a/sound/pci/lx6464es/lx6464es.c b/sound/pci/lx6464es/lx6464es.c index 1bd7a540fd49..b0bd3c53e876 100644 --- a/sound/pci/lx6464es/lx6464es.c +++ b/sound/pci/lx6464es/lx6464es.c | |||
@@ -1137,7 +1137,7 @@ static void __devexit snd_lx6464es_remove(struct pci_dev *pci) | |||
1137 | 1137 | ||
1138 | 1138 | ||
1139 | static struct pci_driver driver = { | 1139 | static struct pci_driver driver = { |
1140 | .name = "Digigram LX6464ES", | 1140 | .name = KBUILD_MODNAME, |
1141 | .id_table = snd_lx6464es_ids, | 1141 | .id_table = snd_lx6464es_ids, |
1142 | .probe = snd_lx6464es_probe, | 1142 | .probe = snd_lx6464es_probe, |
1143 | .remove = __devexit_p(snd_lx6464es_remove), | 1143 | .remove = __devexit_p(snd_lx6464es_remove), |
diff --git a/sound/pci/maestro3.c b/sound/pci/maestro3.c index 3c40d726b46e..0499bf8716d0 100644 --- a/sound/pci/maestro3.c +++ b/sound/pci/maestro3.c | |||
@@ -2885,7 +2885,7 @@ static void __devexit snd_m3_remove(struct pci_dev *pci) | |||
2885 | } | 2885 | } |
2886 | 2886 | ||
2887 | static struct pci_driver driver = { | 2887 | static struct pci_driver driver = { |
2888 | .name = "Maestro3", | 2888 | .name = KBUILD_MODNAME, |
2889 | .id_table = snd_m3_ids, | 2889 | .id_table = snd_m3_ids, |
2890 | .probe = snd_m3_probe, | 2890 | .probe = snd_m3_probe, |
2891 | .remove = __devexit_p(snd_m3_remove), | 2891 | .remove = __devexit_p(snd_m3_remove), |
diff --git a/sound/pci/mixart/mixart.c b/sound/pci/mixart/mixart.c index 6c3fd4d1c49d..9d87e44abd6c 100644 --- a/sound/pci/mixart/mixart.c +++ b/sound/pci/mixart/mixart.c | |||
@@ -1381,7 +1381,7 @@ static void __devexit snd_mixart_remove(struct pci_dev *pci) | |||
1381 | } | 1381 | } |
1382 | 1382 | ||
1383 | static struct pci_driver driver = { | 1383 | static struct pci_driver driver = { |
1384 | .name = "Digigram miXart", | 1384 | .name = KBUILD_MODNAME, |
1385 | .id_table = snd_mixart_ids, | 1385 | .id_table = snd_mixart_ids, |
1386 | .probe = snd_mixart_probe, | 1386 | .probe = snd_mixart_probe, |
1387 | .remove = __devexit_p(snd_mixart_remove), | 1387 | .remove = __devexit_p(snd_mixart_remove), |
diff --git a/sound/pci/nm256/nm256.c b/sound/pci/nm256/nm256.c index 5a60492ac7b3..fd19b7f936ba 100644 --- a/sound/pci/nm256/nm256.c +++ b/sound/pci/nm256/nm256.c | |||
@@ -1743,7 +1743,7 @@ static void __devexit snd_nm256_remove(struct pci_dev *pci) | |||
1743 | 1743 | ||
1744 | 1744 | ||
1745 | static struct pci_driver driver = { | 1745 | static struct pci_driver driver = { |
1746 | .name = "NeoMagic 256", | 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, |
1749 | .remove = __devexit_p(snd_nm256_remove), | 1749 | .remove = __devexit_p(snd_nm256_remove), |
diff --git a/sound/pci/oxygen/oxygen.c b/sound/pci/oxygen/oxygen.c index d7e8ddd9a67b..218d9854e5cb 100644 --- a/sound/pci/oxygen/oxygen.c +++ b/sound/pci/oxygen/oxygen.c | |||
@@ -859,7 +859,7 @@ static int __devinit generic_oxygen_probe(struct pci_dev *pci, | |||
859 | } | 859 | } |
860 | 860 | ||
861 | static struct pci_driver oxygen_driver = { | 861 | static struct pci_driver oxygen_driver = { |
862 | .name = "CMI8788", | 862 | .name = KBUILD_MODNAME, |
863 | .id_table = oxygen_ids, | 863 | .id_table = oxygen_ids, |
864 | .probe = generic_oxygen_probe, | 864 | .probe = generic_oxygen_probe, |
865 | .remove = __devexit_p(oxygen_pci_remove), | 865 | .remove = __devexit_p(oxygen_pci_remove), |
diff --git a/sound/pci/oxygen/virtuoso.c b/sound/pci/oxygen/virtuoso.c index 469010a8b849..773db794b43f 100644 --- a/sound/pci/oxygen/virtuoso.c +++ b/sound/pci/oxygen/virtuoso.c | |||
@@ -88,7 +88,7 @@ static int __devinit xonar_probe(struct pci_dev *pci, | |||
88 | } | 88 | } |
89 | 89 | ||
90 | static struct pci_driver xonar_driver = { | 90 | static struct pci_driver xonar_driver = { |
91 | .name = "AV200", | 91 | .name = KBUILD_MODNAME, |
92 | .id_table = xonar_ids, | 92 | .id_table = xonar_ids, |
93 | .probe = xonar_probe, | 93 | .probe = xonar_probe, |
94 | .remove = __devexit_p(oxygen_pci_remove), | 94 | .remove = __devexit_p(oxygen_pci_remove), |
diff --git a/sound/pci/pcxhr/pcxhr.c b/sound/pci/pcxhr/pcxhr.c index 95cfde27d25c..cb215a01ebb6 100644 --- a/sound/pci/pcxhr/pcxhr.c +++ b/sound/pci/pcxhr/pcxhr.c | |||
@@ -1608,7 +1608,7 @@ static void __devexit pcxhr_remove(struct pci_dev *pci) | |||
1608 | } | 1608 | } |
1609 | 1609 | ||
1610 | static struct pci_driver driver = { | 1610 | static struct pci_driver driver = { |
1611 | .name = "Digigram pcxhr", | 1611 | .name = KBUILD_MODNAME, |
1612 | .id_table = pcxhr_ids, | 1612 | .id_table = pcxhr_ids, |
1613 | .probe = pcxhr_probe, | 1613 | .probe = pcxhr_probe, |
1614 | .remove = __devexit_p(pcxhr_remove), | 1614 | .remove = __devexit_p(pcxhr_remove), |
diff --git a/sound/pci/riptide/riptide.c b/sound/pci/riptide/riptide.c index ad5202efd7a9..91c0cb69d306 100644 --- a/sound/pci/riptide/riptide.c +++ b/sound/pci/riptide/riptide.c | |||
@@ -2176,7 +2176,7 @@ static void __devexit snd_card_riptide_remove(struct pci_dev *pci) | |||
2176 | } | 2176 | } |
2177 | 2177 | ||
2178 | static struct pci_driver driver = { | 2178 | static struct pci_driver driver = { |
2179 | .name = "RIPTIDE", | 2179 | .name = KBUILD_MODNAME, |
2180 | .id_table = snd_riptide_ids, | 2180 | .id_table = snd_riptide_ids, |
2181 | .probe = snd_card_riptide_probe, | 2181 | .probe = snd_card_riptide_probe, |
2182 | .remove = __devexit_p(snd_card_riptide_remove), | 2182 | .remove = __devexit_p(snd_card_riptide_remove), |
@@ -2188,7 +2188,7 @@ static struct pci_driver driver = { | |||
2188 | 2188 | ||
2189 | #ifdef SUPPORT_JOYSTICK | 2189 | #ifdef SUPPORT_JOYSTICK |
2190 | static struct pci_driver joystick_driver = { | 2190 | static struct pci_driver joystick_driver = { |
2191 | .name = "Riptide Joystick", | 2191 | .name = KBUILD_MODNAME "-joystick", |
2192 | .id_table = snd_riptide_joystick_ids, | 2192 | .id_table = snd_riptide_joystick_ids, |
2193 | .probe = snd_riptide_joystick_probe, | 2193 | .probe = snd_riptide_joystick_probe, |
2194 | .remove = __devexit_p(snd_riptide_joystick_remove), | 2194 | .remove = __devexit_p(snd_riptide_joystick_remove), |
diff --git a/sound/pci/rme32.c b/sound/pci/rme32.c index 3c04524de37c..c7bcc63097f4 100644 --- a/sound/pci/rme32.c +++ b/sound/pci/rme32.c | |||
@@ -1985,7 +1985,7 @@ static void __devexit snd_rme32_remove(struct pci_dev *pci) | |||
1985 | } | 1985 | } |
1986 | 1986 | ||
1987 | static struct pci_driver driver = { | 1987 | static struct pci_driver driver = { |
1988 | .name = "RME Digi32", | 1988 | .name = KBUILD_MODNAME, |
1989 | .id_table = snd_rme32_ids, | 1989 | .id_table = snd_rme32_ids, |
1990 | .probe = snd_rme32_probe, | 1990 | .probe = snd_rme32_probe, |
1991 | .remove = __devexit_p(snd_rme32_remove), | 1991 | .remove = __devexit_p(snd_rme32_remove), |
diff --git a/sound/pci/rme96.c b/sound/pci/rme96.c index 9ff247fc8871..a3646118abb0 100644 --- a/sound/pci/rme96.c +++ b/sound/pci/rme96.c | |||
@@ -2396,7 +2396,7 @@ static void __devexit snd_rme96_remove(struct pci_dev *pci) | |||
2396 | } | 2396 | } |
2397 | 2397 | ||
2398 | static struct pci_driver driver = { | 2398 | static struct pci_driver driver = { |
2399 | .name = "RME Digi96", | 2399 | .name = KBUILD_MODNAME, |
2400 | .id_table = snd_rme96_ids, | 2400 | .id_table = snd_rme96_ids, |
2401 | .probe = snd_rme96_probe, | 2401 | .probe = snd_rme96_probe, |
2402 | .remove = __devexit_p(snd_rme96_remove), | 2402 | .remove = __devexit_p(snd_rme96_remove), |
diff --git a/sound/pci/rme9652/hdsp.c b/sound/pci/rme9652/hdsp.c index 2d8332416c83..da50c5562942 100644 --- a/sound/pci/rme9652/hdsp.c +++ b/sound/pci/rme9652/hdsp.c | |||
@@ -5637,7 +5637,7 @@ static void __devexit snd_hdsp_remove(struct pci_dev *pci) | |||
5637 | } | 5637 | } |
5638 | 5638 | ||
5639 | static struct pci_driver driver = { | 5639 | static struct pci_driver driver = { |
5640 | .name = "RME Hammerfall DSP", | 5640 | .name = KBUILD_MODNAME, |
5641 | .id_table = snd_hdsp_ids, | 5641 | .id_table = snd_hdsp_ids, |
5642 | .probe = snd_hdsp_probe, | 5642 | .probe = snd_hdsp_probe, |
5643 | .remove = __devexit_p(snd_hdsp_remove), | 5643 | .remove = __devexit_p(snd_hdsp_remove), |
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index 949691a876d3..2785f4cef349 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c | |||
@@ -6775,7 +6775,7 @@ static void __devexit snd_hdspm_remove(struct pci_dev *pci) | |||
6775 | } | 6775 | } |
6776 | 6776 | ||
6777 | static struct pci_driver driver = { | 6777 | static struct pci_driver driver = { |
6778 | .name = "RME Hammerfall DSP MADI", | 6778 | .name = KBUILD_MODNAME, |
6779 | .id_table = snd_hdspm_ids, | 6779 | .id_table = snd_hdspm_ids, |
6780 | .probe = snd_hdspm_probe, | 6780 | .probe = snd_hdspm_probe, |
6781 | .remove = __devexit_p(snd_hdspm_remove), | 6781 | .remove = __devexit_p(snd_hdspm_remove), |
diff --git a/sound/pci/rme9652/rme9652.c b/sound/pci/rme9652/rme9652.c index c492af5b25f3..9646a8422a85 100644 --- a/sound/pci/rme9652/rme9652.c +++ b/sound/pci/rme9652/rme9652.c | |||
@@ -2632,7 +2632,7 @@ static void __devexit snd_rme9652_remove(struct pci_dev *pci) | |||
2632 | } | 2632 | } |
2633 | 2633 | ||
2634 | static struct pci_driver driver = { | 2634 | static struct pci_driver driver = { |
2635 | .name = "RME Digi9652 (Hammerfall)", | 2635 | .name = KBUILD_MODNAME, |
2636 | .id_table = snd_rme9652_ids, | 2636 | .id_table = snd_rme9652_ids, |
2637 | .probe = snd_rme9652_probe, | 2637 | .probe = snd_rme9652_probe, |
2638 | .remove = __devexit_p(snd_rme9652_remove), | 2638 | .remove = __devexit_p(snd_rme9652_remove), |
diff --git a/sound/pci/sis7019.c b/sound/pci/sis7019.c index 2b5c7a95ae1f..02654dc1d382 100644 --- a/sound/pci/sis7019.c +++ b/sound/pci/sis7019.c | |||
@@ -1436,7 +1436,7 @@ static void __devexit snd_sis7019_remove(struct pci_dev *pci) | |||
1436 | } | 1436 | } |
1437 | 1437 | ||
1438 | static struct pci_driver sis7019_driver = { | 1438 | static struct pci_driver sis7019_driver = { |
1439 | .name = "SiS7019", | 1439 | .name = KBUILD_MODNAME, |
1440 | .id_table = snd_sis7019_ids, | 1440 | .id_table = snd_sis7019_ids, |
1441 | .probe = snd_sis7019_probe, | 1441 | .probe = snd_sis7019_probe, |
1442 | .remove = __devexit_p(snd_sis7019_remove), | 1442 | .remove = __devexit_p(snd_sis7019_remove), |
diff --git a/sound/pci/sonicvibes.c b/sound/pci/sonicvibes.c index 337b9facadfd..860903e10f0f 100644 --- a/sound/pci/sonicvibes.c +++ b/sound/pci/sonicvibes.c | |||
@@ -1530,7 +1530,7 @@ static void __devexit snd_sonic_remove(struct pci_dev *pci) | |||
1530 | } | 1530 | } |
1531 | 1531 | ||
1532 | static struct pci_driver driver = { | 1532 | static struct pci_driver driver = { |
1533 | .name = "S3 SonicVibes", | 1533 | .name = KBUILD_MODNAME, |
1534 | .id_table = snd_sonic_ids, | 1534 | .id_table = snd_sonic_ids, |
1535 | .probe = snd_sonic_probe, | 1535 | .probe = snd_sonic_probe, |
1536 | .remove = __devexit_p(snd_sonic_remove), | 1536 | .remove = __devexit_p(snd_sonic_remove), |
diff --git a/sound/pci/trident/trident.c b/sound/pci/trident/trident.c index 6d0581841d7a..d8a128f6fc02 100644 --- a/sound/pci/trident/trident.c +++ b/sound/pci/trident/trident.c | |||
@@ -172,7 +172,7 @@ static void __devexit snd_trident_remove(struct pci_dev *pci) | |||
172 | } | 172 | } |
173 | 173 | ||
174 | static struct pci_driver driver = { | 174 | static struct pci_driver driver = { |
175 | .name = "Trident4DWaveAudio", | 175 | .name = KBUILD_MODNAME, |
176 | .id_table = snd_trident_ids, | 176 | .id_table = snd_trident_ids, |
177 | .probe = snd_trident_probe, | 177 | .probe = snd_trident_probe, |
178 | .remove = __devexit_p(snd_trident_remove), | 178 | .remove = __devexit_p(snd_trident_remove), |
diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index 8c5f8b5a59f0..d0e19c0c4f0a 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c | |||
@@ -2611,7 +2611,7 @@ static void __devexit snd_via82xx_remove(struct pci_dev *pci) | |||
2611 | } | 2611 | } |
2612 | 2612 | ||
2613 | static struct pci_driver driver = { | 2613 | static struct pci_driver driver = { |
2614 | .name = "VIA 82xx Audio", | 2614 | .name = KBUILD_MODNAME, |
2615 | .id_table = snd_via82xx_ids, | 2615 | .id_table = snd_via82xx_ids, |
2616 | .probe = snd_via82xx_probe, | 2616 | .probe = snd_via82xx_probe, |
2617 | .remove = __devexit_p(snd_via82xx_remove), | 2617 | .remove = __devexit_p(snd_via82xx_remove), |
diff --git a/sound/pci/via82xx_modem.c b/sound/pci/via82xx_modem.c index f7e8bbbe3953..c55401acf6b2 100644 --- a/sound/pci/via82xx_modem.c +++ b/sound/pci/via82xx_modem.c | |||
@@ -1224,7 +1224,7 @@ static void __devexit snd_via82xx_remove(struct pci_dev *pci) | |||
1224 | } | 1224 | } |
1225 | 1225 | ||
1226 | static struct pci_driver driver = { | 1226 | static struct pci_driver driver = { |
1227 | .name = "VIA 82xx Modem", | 1227 | .name = KBUILD_MODNAME, |
1228 | .id_table = snd_via82xx_modem_ids, | 1228 | .id_table = snd_via82xx_modem_ids, |
1229 | .probe = snd_via82xx_probe, | 1229 | .probe = snd_via82xx_probe, |
1230 | .remove = __devexit_p(snd_via82xx_remove), | 1230 | .remove = __devexit_p(snd_via82xx_remove), |
diff --git a/sound/pci/vx222/vx222.c b/sound/pci/vx222/vx222.c index 99a9a814be0b..371d9d399d25 100644 --- a/sound/pci/vx222/vx222.c +++ b/sound/pci/vx222/vx222.c | |||
@@ -290,7 +290,7 @@ static int snd_vx222_resume(struct pci_dev *pci) | |||
290 | #endif | 290 | #endif |
291 | 291 | ||
292 | static struct pci_driver driver = { | 292 | static struct pci_driver driver = { |
293 | .name = "Digigram VX222", | 293 | .name = KBUILD_MODNAME, |
294 | .id_table = snd_vx222_ids, | 294 | .id_table = snd_vx222_ids, |
295 | .probe = snd_vx222_probe, | 295 | .probe = snd_vx222_probe, |
296 | .remove = __devexit_p(snd_vx222_remove), | 296 | .remove = __devexit_p(snd_vx222_remove), |
diff --git a/sound/pci/ymfpci/ymfpci.c b/sound/pci/ymfpci/ymfpci.c index 80c682113381..511d57653124 100644 --- a/sound/pci/ymfpci/ymfpci.c +++ b/sound/pci/ymfpci/ymfpci.c | |||
@@ -345,7 +345,7 @@ static void __devexit snd_card_ymfpci_remove(struct pci_dev *pci) | |||
345 | } | 345 | } |
346 | 346 | ||
347 | static struct pci_driver driver = { | 347 | static struct pci_driver driver = { |
348 | .name = "Yamaha DS-1 PCI", | 348 | .name = KBUILD_MODNAME, |
349 | .id_table = snd_ymfpci_ids, | 349 | .id_table = snd_ymfpci_ids, |
350 | .probe = snd_card_ymfpci_probe, | 350 | .probe = snd_card_ymfpci_probe, |
351 | .remove = __devexit_p(snd_card_ymfpci_remove), | 351 | .remove = __devexit_p(snd_card_ymfpci_remove), |