Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 179354
b: refs/heads/master
c: d817cd5
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Mahoney authored and Linus Torvalds committed Jan 16, 2010
1 parent c18dea8 commit 674f054
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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: de3fab39348dff18c69a0cd04efee9c276a02f51
refs/heads/master: d817cd525589765aa5f6798734e422c867685a58
6 changes: 3 additions & 3 deletions trunk/drivers/char/hw_random/virtio-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ static struct virtio_device_id id_table[] = {
{ 0 },
};

static struct virtio_driver virtio_rng = {
static struct virtio_driver virtio_rng_driver = {
.driver.name = KBUILD_MODNAME,
.driver.owner = THIS_MODULE,
.id_table = id_table,
Expand All @@ -124,12 +124,12 @@ static struct virtio_driver virtio_rng = {

static int __init init(void)
{
return register_virtio_driver(&virtio_rng);
return register_virtio_driver(&virtio_rng_driver);
}

static void __exit fini(void)
{
unregister_virtio_driver(&virtio_rng);
unregister_virtio_driver(&virtio_rng_driver);
}
module_init(init);
module_exit(fini);
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/virtio/virtio_balloon.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ static void __devexit virtballoon_remove(struct virtio_device *vdev)

static unsigned int features[] = { VIRTIO_BALLOON_F_MUST_TELL_HOST };

static struct virtio_driver virtio_balloon = {
static struct virtio_driver virtio_balloon_driver = {
.feature_table = features,
.feature_table_size = ARRAY_SIZE(features),
.driver.name = KBUILD_MODNAME,
Expand All @@ -279,12 +279,12 @@ static struct virtio_driver virtio_balloon = {

static int __init init(void)
{
return register_virtio_driver(&virtio_balloon);
return register_virtio_driver(&virtio_balloon_driver);
}

static void __exit fini(void)
{
unregister_virtio_driver(&virtio_balloon);
unregister_virtio_driver(&virtio_balloon_driver);
}
module_init(init);
module_exit(fini);
Expand Down

0 comments on commit 674f054

Please sign in to comment.