aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2012-08-04 21:03:56 +0200
committerPablo Neira Ayuso <pablo@gnumonks.org>2012-08-04 21:03:56 +0200
commitd2ea108728cc74c231c0b659709a39d887e16cc5 (patch)
treea24561a8fd79f812f5a6f85a3decc56b05241e1d /include/osmocom
parent81979fa80a814ece2c6a7f3f8a7a85822758cad5 (diff)
osmux: remove timeval parameter from osmux_tx_sched
We can internal allocate this in the stack, no need to expose it to the caller.
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/netif/osmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/netif/osmux.h b/include/osmocom/netif/osmux.h
index b84b119..47fbd95 100644
--- a/include/osmocom/netif/osmux.h
+++ b/include/osmocom/netif/osmux.h
@@ -63,6 +63,6 @@ void osmux_xfrm_input_deliver(struct osmux_in_handle *h);
int osmux_xfrm_output(struct osmux_hdr *osmuxh, struct osmux_out_handle *h, struct llist_head *list);
struct osmux_hdr *osmux_xfrm_output_pull(struct msgb *msg);
-void osmux_tx_sched(struct llist_head *list, struct timeval *when, void (*tx_cb)(struct msgb *msg, void *data), void *data);
+void osmux_tx_sched(struct llist_head *list, void (*tx_cb)(struct msgb *msg, void *data), void *data);
#endif