Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -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
	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);
}
}