Commit 123e7497 authored by Bryan O'Donoghue's avatar Bryan O'Donoghue Committed by Greg Kroah-Hartman

greybus: control: Drop unused parameter from timesync_authoritative

The count field is redundant and unused. Drop it from the control
timesync_authoritative command.
Signed-off-by: default avatarBryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent fa433b61
......@@ -192,7 +192,7 @@ int gb_control_timesync_get_last_event(struct gb_control *control,
}
int gb_control_timesync_authoritative(struct gb_control *control,
u64 *frame_time, u8 count)
u64 *frame_time)
{
struct gb_control_timesync_authoritative_request request;
int i;
......
......@@ -46,6 +46,6 @@ int gb_control_timesync_disable(struct gb_control *control);
int gb_control_timesync_get_last_event(struct gb_control *control,
u64 *frame_time);
int gb_control_timesync_authoritative(struct gb_control *control,
u64 *frame_time, u8 count);
u64 *frame_time);
#endif /* __CONTROL_H */
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