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: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Greg Kroah-Hartman 2011-03-02 19:31:39 -08:00
parent 6ed10de124
commit e93eff9cf4

View File

@ -127,7 +127,7 @@ struct synthhid_device_info_ack {
struct synthhid_input_report {
struct synthhid_msg_hdr header;
char ReportBuffer[1];
char buffer[1];
};
#pragma pack(pop)
@ -435,7 +435,7 @@ static void MousevscOnReceiveInputReport(struct mousevsc_dev *InputDevice, struc
inputDriver = (struct mousevsc_drv_obj *)InputDevice->Device->drv;
inputreport_callback(InputDevice->Device,
InputReport->ReportBuffer,
InputReport->buffer,
InputReport->header.size);
}