Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 119326
b: refs/heads/master
c: ffb78a2
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Nov 30, 2008
1 parent 332b618 commit 98e96c5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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: df6b07949b6cab9d119363d02ef63379160f6c82
refs/heads/master: ffb78a26169351f6c22cdae481b057d50d5d759b
6 changes: 3 additions & 3 deletions trunk/drivers/input/xen-kbdfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ static struct xenbus_device_id xenkbd_ids[] = {
{ "" }
};

static struct xenbus_driver xenkbd = {
static struct xenbus_driver xenkbd_driver = {
.name = "vkbd",
.owner = THIS_MODULE,
.ids = xenkbd_ids,
Expand All @@ -342,12 +342,12 @@ static int __init xenkbd_init(void)
if (xen_initial_domain())
return -ENODEV;

return xenbus_register_frontend(&xenkbd);
return xenbus_register_frontend(&xenkbd_driver);
}

static void __exit xenkbd_cleanup(void)
{
xenbus_unregister_driver(&xenkbd);
xenbus_unregister_driver(&xenkbd_driver);
}

module_init(xenkbd_init);
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/net/xen-netfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ static int __devexit xennet_remove(struct xenbus_device *dev)
return 0;
}

static struct xenbus_driver netfront = {
static struct xenbus_driver netfront_driver = {
.name = "vif",
.owner = THIS_MODULE,
.ids = netfront_ids,
Expand All @@ -1805,7 +1805,7 @@ static int __init netif_init(void)

printk(KERN_INFO "Initialising Xen virtual ethernet driver.\n");

return xenbus_register_frontend(&netfront);
return xenbus_register_frontend(&netfront_driver);
}
module_init(netif_init);

Expand All @@ -1815,7 +1815,7 @@ static void __exit netif_exit(void)
if (xen_initial_domain())
return;

xenbus_unregister_driver(&netfront);
xenbus_unregister_driver(&netfront_driver);
}
module_exit(netif_exit);

Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/video/xen-fbfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ static struct xenbus_device_id xenfb_ids[] = {
{ "" }
};

static struct xenbus_driver xenfb = {
static struct xenbus_driver xenfb_driver = {
.name = "vfb",
.owner = THIS_MODULE,
.ids = xenfb_ids,
Expand All @@ -687,12 +687,12 @@ static int __init xenfb_init(void)
if (xen_initial_domain())
return -ENODEV;

return xenbus_register_frontend(&xenfb);
return xenbus_register_frontend(&xenfb_driver);
}

static void __exit xenfb_cleanup(void)
{
xenbus_unregister_driver(&xenfb);
xenbus_unregister_driver(&xenfb_driver);
}

module_init(xenfb_init);
Expand Down

0 comments on commit 98e96c5

Please sign in to comment.