Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 81648
b: refs/heads/master
c: e4d7681
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and Jaroslav Kysela committed Jan 31, 2008
1 parent d00b0b4 commit 0c605b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e7d7c2e28890e1b3944246af1a668b6da91ab411
refs/heads/master: e4d76815c2d6477f4b77f1c7dbfbde113af89e67
6 changes: 3 additions & 3 deletions trunk/sound/pci/ad1889.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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);
Expand Down

0 comments on commit 0c605b4

Please sign in to comment.