Commit e93eff9c authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: hv: hv_mouse: clean up camelcase in struct synthhid_input_report

Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: K. Y. Srinivasan <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6ed10de1
...@@ -127,7 +127,7 @@ struct synthhid_device_info_ack { ...@@ -127,7 +127,7 @@ struct synthhid_device_info_ack {
struct synthhid_input_report { struct synthhid_input_report {
struct synthhid_msg_hdr header; struct synthhid_msg_hdr header;
char ReportBuffer[1]; char buffer[1];
}; };
#pragma pack(pop) #pragma pack(pop)
...@@ -435,7 +435,7 @@ static void MousevscOnReceiveInputReport(struct mousevsc_dev *InputDevice, struc ...@@ -435,7 +435,7 @@ static void MousevscOnReceiveInputReport(struct mousevsc_dev *InputDevice, struc
inputDriver = (struct mousevsc_drv_obj *)InputDevice->Device->drv; inputDriver = (struct mousevsc_drv_obj *)InputDevice->Device->drv;
inputreport_callback(InputDevice->Device, inputreport_callback(InputDevice->Device,
InputReport->ReportBuffer, InputReport->buffer,
InputReport->header.size); InputReport->header.size);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment