diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2005-09-12 02:20:54 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-09-12 05:12:34 -0400 |
commit | 3bcd4649bca99ee9242f20d7da35e3f8741c6549 (patch) | |
tree | 97af30d0d746e351db0f69c571f7307911c11c7c /sound/pci/au88x0/au88x0.c | |
parent | 4338829e09db2d320a00b4e0ed0bcc49859d73cc (diff) |
[ALSA] set owner field in struct pci_driver
AD1889 driver,ALS4000 driver,ATIIXP driver,ATIIXP-modem driver
AZT3328 driver,BT87x driver,CMIPCI driver,CS4281 driver
ENS1370/1+ driver,ES1938 driver,ES1968 driver,FM801 driver
Intel8x0 driver,Intel8x0-modem driver,Maestro3 driver,RME32 driver
RME96 driver,SonicVibes driver,VIA82xx driver,VIA82xx-modem driver
ALI5451 driver,au88x0 driver,CS46xx driver,EMU10K1/EMU10K2 driver
HDA Intel driver,ICE1712 driver,ICE1724 driver,KORG1212 driver
MIXART driver,NM256 driver,RME HDSP driver,RME9652 driver
Trident driver,Digigram VX222 driver,YMFPCI driver
Set the module owner field in each driver's struct pci_driver to get
the driver symlink in the sysfs device directory.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/pci/au88x0/au88x0.c')
-rw-r--r-- | sound/pci/au88x0/au88x0.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/au88x0/au88x0.c b/sound/pci/au88x0/au88x0.c index 76b1c3018690..04b695d6fd48 100644 --- a/sound/pci/au88x0/au88x0.c +++ b/sound/pci/au88x0/au88x0.c | |||
@@ -373,6 +373,7 @@ static void __devexit snd_vortex_remove(struct pci_dev *pci) | |||
373 | // pci_driver definition | 373 | // pci_driver definition |
374 | static struct pci_driver driver = { | 374 | static struct pci_driver driver = { |
375 | .name = CARD_NAME_SHORT, | 375 | .name = CARD_NAME_SHORT, |
376 | .owner = THIS_MODULE, | ||
376 | .id_table = snd_vortex_ids, | 377 | .id_table = snd_vortex_ids, |
377 | .probe = snd_vortex_probe, | 378 | .probe = snd_vortex_probe, |
378 | .remove = __devexit_p(snd_vortex_remove), | 379 | .remove = __devexit_p(snd_vortex_remove), |