Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 287342
b: refs/heads/master
c: c88db23
h: refs/heads/master
v: v3
  • Loading branch information
Danny Kukawka authored and Grant Likely committed Feb 6, 2012
1 parent 15f1188 commit 9386aad
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: b1a4874e0d03cb65a1bde950d8f5f2d8743f66ed
refs/heads/master: c88db233251b026fda775428f0250c760553e216
6 changes: 3 additions & 3 deletions trunk/drivers/spi/spi-topcliff-pch.c
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,7 @@ static int pch_spi_resume(struct pci_dev *pdev)

#endif

static struct pci_driver pch_spi_pcidev = {
static struct pci_driver pch_spi_pcidev_driver = {
.name = "pch_spi",
.id_table = pch_spi_pcidev_id,
.probe = pch_spi_probe,
Expand All @@ -1736,7 +1736,7 @@ static int __init pch_spi_init(void)
if (ret)
return ret;

ret = pci_register_driver(&pch_spi_pcidev);
ret = pci_register_driver(&pch_spi_pcidev_driver);
if (ret)
return ret;

Expand All @@ -1746,7 +1746,7 @@ module_init(pch_spi_init);

static void __exit pch_spi_exit(void)
{
pci_unregister_driver(&pch_spi_pcidev);
pci_unregister_driver(&pch_spi_pcidev_driver);
platform_driver_unregister(&pch_spi_pd_driver);
}
module_exit(pch_spi_exit);
Expand Down

0 comments on commit 9386aad

Please sign in to comment.