Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122880
b: refs/heads/master
c: 3c36a83
h: refs/heads/master
v: v3
  • Loading branch information
Krzysztof Hałasa committed Dec 21, 2008
1 parent b3224e7 commit ffd6072
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: ae2754a975694a3865788e303b741d0f616bc43a
refs/heads/master: 3c36a837a960ccbff05fa773a495c389fbd42f0e
6 changes: 3 additions & 3 deletions trunk/drivers/net/arm/ixp4xx_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ static int __devexit eth_remove_one(struct platform_device *pdev)
return 0;
}

static struct platform_driver drv = {
static struct platform_driver ixp4xx_eth_driver = {
.driver.name = DRV_NAME,
.probe = eth_init_one,
.remove = eth_remove_one,
Expand All @@ -1247,12 +1247,12 @@ static int __init eth_init_module(void)
mdio_regs = (struct eth_regs __iomem *)IXP4XX_EthB_BASE_VIRT;
__raw_writel(DEFAULT_CORE_CNTRL, &mdio_regs->core_control);

return platform_driver_register(&drv);
return platform_driver_register(&ixp4xx_eth_driver);
}

static void __exit eth_cleanup_module(void)
{
platform_driver_unregister(&drv);
platform_driver_unregister(&ixp4xx_eth_driver);
}

MODULE_AUTHOR("Krzysztof Halasa");
Expand Down

0 comments on commit ffd6072

Please sign in to comment.