Commit ad810559 authored by Federico Vaga's avatar Federico Vaga

tools: remove unused functions

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent 0d845640
...@@ -90,12 +90,6 @@ int tmo_init(timeout_t *tmo, uint32_t milliseconds, int repeat) ...@@ -90,12 +90,6 @@ int tmo_init(timeout_t *tmo, uint32_t milliseconds, int repeat)
return 0; return 0;
} }
int tmo_restart(timeout_t *tmo)
{
tmo->start_tics = get_monotonic_us();
return 0;
}
int tmo_expired(timeout_t *tmo) int tmo_expired(timeout_t *tmo)
{ {
uint64_t time = get_monotonic_us(); uint64_t time = get_monotonic_us();
......
...@@ -13,12 +13,6 @@ extern char git_version[]; ...@@ -13,12 +13,6 @@ extern char git_version[];
int n_boards; int n_boards;
struct fmctdc_board *brd = NULL; struct fmctdc_board *brd = NULL;
void usage_msg(const char *name, const char *msg)
{
printf("usage: %s %s\n", name, msg);
exit(0);
}
void open_board(char *dev_id_str) void open_board(char *dev_id_str)
{ {
unsigned int dev_id; unsigned int dev_id;
......
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