Skip to content

Commit

Permalink
Staging: hv: hv_mouse: clean up camelcase in struct synthhid_input_re…
Browse files Browse the repository at this point in the history
…port

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>
  • Loading branch information
Greg Kroah-Hartman committed Mar 3, 2011
1 parent 6ed10de commit e93eff9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit e93eff9

Please sign in to comment.