public inbox for linux-sound@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/5] sound: fix ad1889 section mismatch
@ 2008-01-15 21:24 Randy Dunlap
  0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2008-01-15 21:24 UTC (permalink / raw)
  To: lkml, linux-sound; +Cc: perex, akpm, samr

From: Randy Dunlap <randy.dunlap@oracle.com>

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>
---
 sound/pci/ad1889.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--- linux-2.6.24-rc7-git7.orig/sound/pci/ad1889.c
+++ linux-2.6.24-rc7-git7/sound/pci/ad1889.c
@@ -1055,7 +1055,7 @@ static struct pci_device_id snd_ad1889_i
 };
 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,
@@ -1065,13 +1065,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);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-01-15 21:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-15 21:24 [PATCH 2/5] sound: fix ad1889 section mismatch Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox