diff options
author | K. Y. Srinivasan <[email protected]> | 2011-05-10 07:55:18 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2011-05-11 13:48:58 -0700 |
commit | 19912a4f77333fa8df211e4dde86e46875b3f696 (patch) | |
tree | a94c52149e64ff95c097d3d565c82dccbced22d5 | |
parent | d48909703054bc5759dea5859b00325b3871210a (diff) |
Staging: hv: mouse_vsc: Rename the variable g_mousevsc_drv
Signed-off-by: K. Y. Srinivasan <[email protected]>
Signed-off-by: Haiyang Zhang <[email protected]>
Signed-off-by: Abhishek Kane <[email protected]>
Signed-off-by: Hank Janssen <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/hv/hv_mouse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c index b7086634a445..cc3c1d45dbb0 100644 --- a/drivers/staging/hv/hv_mouse.c +++ b/drivers/staging/hv/hv_mouse.c @@ -794,7 +794,7 @@ struct input_device_context { }; -static struct mousevsc_drv_obj g_mousevsc_drv; +static struct mousevsc_drv_obj mousevsc_drv; static void deviceinfo_callback(struct hv_device *dev, struct hv_input_dev_info *info) { @@ -947,7 +947,7 @@ static int mousevsc_drv_exit_cb(struct device *dev, void *data) static void mousevsc_drv_exit(void) { - struct hv_driver *drv = &g_mousevsc_drv.base; + struct hv_driver *drv = &mousevsc_drv.base; int ret; struct device *current_dev = NULL; @@ -986,8 +986,8 @@ static int mouse_vsc_initialize(struct hv_driver *driver) static int __init mousevsc_init(void) { - struct mousevsc_drv_obj *input_drv_obj = &g_mousevsc_drv; - struct hv_driver *drv = &g_mousevsc_drv.base; + struct mousevsc_drv_obj *input_drv_obj = &mousevsc_drv; + struct hv_driver *drv = &mousevsc_drv.base; DPRINT_INFO(INPUTVSC_DRV, "Hyper-V Mouse driver initializing."); |