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

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

greybus: properly annotate struct gb_control_timesync_enable_request



A patch from created struct gb_control_timesync_enable_request,
but forgot to properly annotate that the fields are little-endian.  The
code is correct in treating them this way, so there isn't a bug, but
sparse complains.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
Reviewed-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 53f96506
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -177,9 +177,9 @@ struct gb_control_interface_version_response {

struct gb_control_timesync_enable_request {
	__u8	count;
	__u64	frame_time;
	__u32	strobe_delay;
	__u32	refclk;
	__le64	frame_time;
	__le32	strobe_delay;
	__le32	refclk;
} __packed;
/* timesync enable response has no payload */