diff options
Diffstat (limited to 'drivers/lguest')
-rw-r--r-- | drivers/lguest/lguest_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/lguest/lguest_device.c b/drivers/lguest/lguest_device.c index 84f85e23cca7..1b2ec0bf5eb1 100644 --- a/drivers/lguest/lguest_device.c +++ b/drivers/lguest/lguest_device.c | |||
@@ -47,7 +47,7 @@ struct lguest_device { | |||
47 | /* Since the virtio infrastructure hands us a pointer to the virtio_device all | 47 | /* Since the virtio infrastructure hands us a pointer to the virtio_device all |
48 | * the time, it helps to have a curt macro to get a pointer to the struct | 48 | * the time, it helps to have a curt macro to get a pointer to the struct |
49 | * lguest_device it's enclosed in. */ | 49 | * lguest_device it's enclosed in. */ |
50 | #define to_lgdev(vdev) container_of(vdev, struct lguest_device, vdev) | 50 | #define to_lgdev(vd) container_of(vd, struct lguest_device, vdev) |
51 | 51 | ||
52 | /*D:130 | 52 | /*D:130 |
53 | * Device configurations | 53 | * Device configurations |