Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 213910
b: refs/heads/master
c: f502bf2
h: refs/heads/master
v: v3
  • Loading branch information
Ian Campbell authored and David S. Miller committed Aug 23, 2010
1 parent ca89859 commit 3dd9c9e
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: e88c64f0a42575e01c7ace903d0570bc0b7fcf85
refs/heads/master: f502bf2bc0de4795e8dd081a2095006021c00a0f
8 changes: 4 additions & 4 deletions trunk/drivers/net/xen-netfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ static int setup_netfront(struct xenbus_device *dev, struct netfront_info *info)
}

/* Common code used when first setting up, and when resuming. */
static int talk_to_backend(struct xenbus_device *dev,
static int talk_to_netback(struct xenbus_device *dev,
struct netfront_info *info)
{
const char *message;
Expand Down Expand Up @@ -1545,7 +1545,7 @@ static int xennet_connect(struct net_device *dev)
return -ENODEV;
}

err = talk_to_backend(np->xbdev, np);
err = talk_to_netback(np->xbdev, np);
if (err)
return err;

Expand Down Expand Up @@ -1599,7 +1599,7 @@ static int xennet_connect(struct net_device *dev)
/**
* Callback received when the backend's state changes.
*/
static void backend_changed(struct xenbus_device *dev,
static void netback_changed(struct xenbus_device *dev,
enum xenbus_state backend_state)
{
struct netfront_info *np = dev_get_drvdata(&dev->dev);
Expand Down Expand Up @@ -1801,7 +1801,7 @@ static struct xenbus_driver netfront_driver = {
.probe = netfront_probe,
.remove = __devexit_p(xennet_remove),
.resume = netfront_resume,
.otherend_changed = backend_changed,
.otherend_changed = netback_changed,
};

static int __init netif_init(void)
Expand Down

0 comments on commit 3dd9c9e

Please sign in to comment.