Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341813
b: refs/heads/master
c: 48d16cb
h: refs/heads/master
i:
  341811: 01081f7
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent 23c3e89 commit 5aa8a5f
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: 27add00620ed820f94c8d332591fe73ba384b7e9
refs/heads/master: 48d16cb1befb39ab1d7dc5842182d6133d88de0e
8 changes: 4 additions & 4 deletions trunk/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#define AXIENET_REGS_N 32

/* Match table for of_platform binding */
static struct of_device_id axienet_of_match[] __devinitdata = {
static struct of_device_id axienet_of_match[] = {
{ .compatible = "xlnx,axi-ethernet-1.00.a", },
{ .compatible = "xlnx,axi-ethernet-1.01.a", },
{ .compatible = "xlnx,axi-ethernet-2.01.a", },
Expand Down Expand Up @@ -1482,7 +1482,7 @@ static void axienet_dma_err_handler(unsigned long data)
* device. Parses through device tree and populates fields of
* axienet_local. It registers the Ethernet device.
*/
static int __devinit axienet_of_probe(struct platform_device *op)
static int axienet_of_probe(struct platform_device *op)
{
__be32 *p;
int size, ret = 0;
Expand Down Expand Up @@ -1632,7 +1632,7 @@ static int __devinit axienet_of_probe(struct platform_device *op)
return ret;
}

static int __devexit axienet_of_remove(struct platform_device *op)
static int axienet_of_remove(struct platform_device *op)
{
struct net_device *ndev = dev_get_drvdata(&op->dev);
struct axienet_local *lp = netdev_priv(ndev);
Expand All @@ -1656,7 +1656,7 @@ static int __devexit axienet_of_remove(struct platform_device *op)

static struct platform_driver axienet_of_driver = {
.probe = axienet_of_probe,
.remove = __devexit_p(axienet_of_remove),
.remove = axienet_of_remove,
.driver = {
.owner = THIS_MODULE,
.name = "xilinx_axienet",
Expand Down

0 comments on commit 5aa8a5f

Please sign in to comment.