Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 284556
b: refs/heads/master
c: 97e43c9
h: refs/heads/master
v: v3
  • Loading branch information
Christian Gmeiner authored and Samuel Ortiz committed Jan 8, 2012
1 parent 83110fa commit 2a231ea
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: 876989d58658858f27a461f0b4b43fa750a208f4
refs/heads/master: 97e43c983c721a47546e6db3b7711dcd912a6481
6 changes: 3 additions & 3 deletions trunk/drivers/mfd/cs5535-mfd.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ static struct pci_device_id cs5535_mfd_pci_tbl[] = {
};
MODULE_DEVICE_TABLE(pci, cs5535_mfd_pci_tbl);

static struct pci_driver cs5535_mfd_drv = {
static struct pci_driver cs5535_mfd_driver = {
.name = DRV_NAME,
.id_table = cs5535_mfd_pci_tbl,
.probe = cs5535_mfd_probe,
Expand All @@ -188,12 +188,12 @@ static struct pci_driver cs5535_mfd_drv = {

static int __init cs5535_mfd_init(void)
{
return pci_register_driver(&cs5535_mfd_drv);
return pci_register_driver(&cs5535_mfd_driver);
}

static void __exit cs5535_mfd_exit(void)
{
pci_unregister_driver(&cs5535_mfd_drv);
pci_unregister_driver(&cs5535_mfd_driver);
}

module_init(cs5535_mfd_init);
Expand Down

0 comments on commit 2a231ea

Please sign in to comment.