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: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Bryan O'Donoghue 2016-05-12 12:43:52 +01:00 committed by Greg Kroah-Hartman
parent fa433b6196
commit 123e749723
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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 */