From: Greg Kroah-Hartman Date: Thu, 3 Mar 2011 03:19:58 +0000 (-0800) Subject: Staging: hv: hv_mouse: clean up camelcase in struct synthhid_protocol_response X-Git-Tag: v2.6.39-rc1~469^2~294 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=325eae14448a7ce5e2410f61901fd740e6e93f7d;p=~emulex%2Finfiniband.git Staging: hv: hv_mouse: clean up camelcase in struct synthhid_protocol_response Cc: Hank Janssen Cc: K. Y. Srinivasan Cc: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c index 0f0caf0097f..98242cffe20 100644 --- a/drivers/staging/hv/hv_mouse.c +++ b/drivers/staging/hv/hv_mouse.c @@ -111,7 +111,7 @@ struct synthhid_protocol_request { struct synthhid_protocol_response { struct synthhid_msg_hdr header; union synthhid_version version_requested; - unsigned char Approved; + unsigned char approved; }; struct synthhid_device_info { @@ -635,7 +635,7 @@ static int MousevscConnectToVsp(struct hv_device *Device) response = &inputDevice->ProtocolResp; - if (!response->u.Response.Approved) { + if (!response->u.Response.approved) { pr_err("synthhid protocol request failed (version %d)", SYNTHHID_INPUT_VERSION); ret = -1;