diff options
author | Harald Welte <laforge@gnumonks.org> | 2017-05-02 21:42:46 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-05-17 15:15:09 +0100 |
commit | 1d640889dfcf841738f1b279056c440d2e409a30 (patch) | |
tree | 0f5674dcea56ca5de327d6a5719a4ab4fc333f5a /include | |
parent | 8a4eb837ab74bbbfa2a51dd6d1e8c4a03c15505a (diff) |
sercomm: remove unrequired helper functions
osmo_sercomm_{bind,get}_uart() are not really needed anymore, as
sercomm_inst is public and thus the user can access the uart_id member
directly.
Change-Id: I6d57709c3764036046202f16a26c9eb87426c8d1
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/core/sercomm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/osmocom/core/sercomm.h b/include/osmocom/core/sercomm.h index 05833907..cc1a833b 100644 --- a/include/osmocom/core/sercomm.h +++ b/include/osmocom/core/sercomm.h @@ -61,8 +61,6 @@ struct osmo_sercomm_inst { #ifndef HOST_BUILD #include <uart.h> /* helper functions for target */ -void osmo_sercomm_bind_uart(struct osmo_sercomm_inst *sercomm, int uart); -int osmo_sercomm_get_uart(struct osmo_sercomm_inst *sercomm); void osmo_sercomm_change_speed(struct osmo_sercomm_inst *sercomm, enum uart_baudrate bdrt); #endif |