Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 58086
b: refs/heads/master
c: 92504f7
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed Jun 28, 2007
1 parent 2cf21f9 commit ae72553
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 59faba1b316a7798a33752b3889193333f8af1a0
refs/heads/master: 92504f79a7c57b853dfb59595fd2860282f6ba1e
8 changes: 4 additions & 4 deletions trunk/drivers/dma/ioatdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ static struct pci_device_id ioat_pci_tbl[] = {
{ 0, }
};

static struct pci_driver ioat_pci_drv = {
static struct pci_driver ioat_pci_driver = {
.name = "ioatdma",
.id_table = ioat_pci_tbl,
.probe = ioat_probe,
Expand Down Expand Up @@ -699,7 +699,7 @@ static int __devinit ioat_probe(struct pci_dev *pdev,
if (err)
goto err_set_dma_mask;

err = pci_request_regions(pdev, ioat_pci_drv.name);
err = pci_request_regions(pdev, ioat_pci_driver.name);
if (err)
goto err_request_regions;

Expand Down Expand Up @@ -828,14 +828,14 @@ static int __init ioat_init_module(void)
/* if forced, worst case is that rmmod hangs */
__unsafe(THIS_MODULE);

return pci_register_driver(&ioat_pci_drv);
return pci_register_driver(&ioat_pci_driver);
}

module_init(ioat_init_module);

static void __exit ioat_exit_module(void)
{
pci_unregister_driver(&ioat_pci_drv);
pci_unregister_driver(&ioat_pci_driver);
}

module_exit(ioat_exit_module);

0 comments on commit ae72553

Please sign in to comment.