summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-03-02 19:44:13 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-02 19:44:13 -0800
commitdf7ed924e5f5b15828c803d666fbc260c504687a (patch)
tree35a130488c556fe3fb2dfb406d3163d0c2a8d5f3
parent92d40b769f2a98e949b6653d757c758e0a945baf (diff)
downloadlinux-stable-df7ed924e5f5b15828c803d666fbc260c504687a.tar.gz
linux-stable-df7ed924e5f5b15828c803d666fbc260c504687a.tar.bz2
linux-stable-df7ed924e5f5b15828c803d666fbc260c504687a.zip
Staging: hv: hv_mouse: fix up guid variable name
It wasn't a global either, yet it was called one for some reason... 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>
-rw-r--r--drivers/staging/hv/hv_mouse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c
index a3a4f28e4803..8ae1eab2fb0a 100644
--- a/drivers/staging/hv/hv_mouse.c
+++ b/drivers/staging/hv/hv_mouse.c
@@ -191,7 +191,7 @@ struct mousevsc_dev {
static const char *driver_name = "mousevsc";
/* {CFA8B69E-5B4A-4cc0-B98B-8BA1A1F3F95A} */
-static const struct hv_guid gMousevscDeviceType = {
+static const struct hv_guid mouse_guid = {
.data = {0x9E, 0xB6, 0xA8, 0xCF, 0x4A, 0x5B, 0xc0, 0x4c,
0xB9, 0x8B, 0x8B, 0xA1, 0xA1, 0xF3, 0xF9, 0x5A}
};
@@ -998,7 +998,7 @@ static int mouse_vsc_initialize(struct hv_driver *Driver)
int ret = 0;
Driver->name = driver_name;
- memcpy(&Driver->dev_type, &gMousevscDeviceType,
+ memcpy(&Driver->dev_type, &mouse_guid,
sizeof(struct hv_guid));
/* Setup the dispatch table */