summaryrefslogtreecommitdiff
path: root/drivers/staging/hv
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-03-02 19:42:19 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-02 19:42:19 -0800
commit92d40b769f2a98e949b6653d757c758e0a945baf (patch)
treed99dd3180017d09af54bebc23a216d8c5f7f1dc7 /drivers/staging/hv
parent5ff9b906c45bcb17dbf7922205dd95f9ca189a88 (diff)
Staging: hv: hv_mouse: get rid of hungarian notation for name of the module
And, it's not even a global, so the original creator got the Hungarian notation wrong! {sigh} Cc: Hank Janssen <hjanssen@microsoft.com> Cc: K. Y. Srinivasan <kys@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv')
-rw-r--r--drivers/staging/hv/hv_mouse.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c
index 0b10312ebe1d..a3a4f28e4803 100644
--- a/drivers/staging/hv/hv_mouse.c
+++ b/drivers/staging/hv/hv_mouse.c
@@ -188,10 +188,7 @@ struct mousevsc_dev {
};
-/*
- * Globals
- */
-static const char *gDriverName = "mousevsc";
+static const char *driver_name = "mousevsc";
/* {CFA8B69E-5B4A-4cc0-B98B-8BA1A1F3F95A} */
static const struct hv_guid gMousevscDeviceType = {
@@ -1000,7 +997,7 @@ static int mouse_vsc_initialize(struct hv_driver *Driver)
(struct mousevsc_drv_obj *)Driver;
int ret = 0;
- Driver->name = gDriverName;
+ Driver->name = driver_name;
memcpy(&Driver->dev_type, &gMousevscDeviceType,
sizeof(struct hv_guid));