diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-01-16 14:54:46 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-01-31 17:30:00 +0100 |
commit | e4d76815c2d6477f4b77f1c7dbfbde113af89e67 (patch) | |
tree | 14e661ef042a820cf9bd7350d88b963f191a5d62 /sound/pci/ad1889.c | |
parent | e7d7c2e28890e1b3944246af1a668b6da91ab411 (diff) | |
download | linux-3.10-e4d76815c2d6477f4b77f1c7dbfbde113af89e67.tar.gz linux-3.10-e4d76815c2d6477f4b77f1c7dbfbde113af89e67.tar.bz2 linux-3.10-e4d76815c2d6477f4b77f1c7dbfbde113af89e67.zip |
[ALSA] sound: fix ad1889 section mismatch
Fix section mismatch in ad1889 by renaming the pci_driver variable to a
whitelisted variable name.
WARNING: vmlinux.o(.data+0x2e5ff0): Section mismatch: reference to .init.text:snd_ad1889_probe (between 'ad1889_pci' and 'index')
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/pci/ad1889.c')
-rw-r--r-- | sound/pci/ad1889.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/ad1889.c b/sound/pci/ad1889.c index be9f1a276be..a66d5150bb7 100644 --- a/sound/pci/ad1889.c +++ b/sound/pci/ad1889.c @@ -1054,7 +1054,7 @@ static struct pci_device_id snd_ad1889_ids[] = { }; MODULE_DEVICE_TABLE(pci, snd_ad1889_ids); -static struct pci_driver ad1889_pci = { +static struct pci_driver ad1889_pci_driver = { .name = "AD1889 Audio", .id_table = snd_ad1889_ids, .probe = snd_ad1889_probe, @@ -1064,13 +1064,13 @@ static struct pci_driver ad1889_pci = { static int __init alsa_ad1889_init(void) { - return pci_register_driver(&ad1889_pci); + return pci_register_driver(&ad1889_pci_driver); } static void __exit alsa_ad1889_fini(void) { - pci_unregister_driver(&ad1889_pci); + pci_unregister_driver(&ad1889_pci_driver); } module_init(alsa_ad1889_init); |