aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-05-14 21:48:41 +0200
committerHarald Welte <laforge@gnumonks.org>2017-05-17 15:15:09 +0100
commit7af6d22a4e15ea7dde5869ca6784e06dbff87a28 (patch)
tree1fda03041229fd3e73dc05b59e12e39086187fa3 /src
parentfe71ee9d993af078aac0596ee081f04ca9145e7e (diff)
sercomm: Include in libosmocore Makefile
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/sercomm.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 6948e1a8..c083936e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -17,7 +17,7 @@ libosmocore_la_SOURCES = timer.c timer_gettimeofday.c select.c signal.c msgb.c b
conv.c application.c rbtree.c strrb.c \
loggingrb.c crc8gen.c crc16gen.c crc32gen.c crc64gen.c \
macaddr.c stat_item.c stats.c stats_statsd.c prim.c \
- viterbi.c viterbi_gen.c
+ viterbi.c viterbi_gen.c sercomm.c
BUILT_SOURCES = crc8gen.c crc16gen.c crc32gen.c crc64gen.c
diff --git a/src/sercomm.c b/src/sercomm.c
index ff6a5a36..f3241c4e 100644
--- a/src/sercomm.c
+++ b/src/sercomm.c
@@ -29,7 +29,7 @@
#include <osmocom/core/sercomm.h>
#include <osmocom/core/linuxlist.h>
-#ifdef HOST_BUILD
+#ifndef EMBEDDED
# define DEFAULT_RX_MSG_SIZE 2048
static inline void sercomm_drv_lock(unsigned long __attribute__((unused)) *flags) {}
@@ -107,7 +107,7 @@ void osmo_sercomm_sendmsg(struct osmo_sercomm_inst *sercomm, uint8_t dlci, struc
msgb_enqueue(&sercomm->tx.dlci_queues[dlci], msg);
sercomm_drv_unlock(&flags);
-#ifndef HOST_BUILD
+#ifdef EMBEDDED
/* tell UART that we have something to send */
uart_irq_enable(sercomm->uart_id, UART_IRQ_TX_EMPTY, 1);
#endif
@@ -126,7 +126,7 @@ unsigned int osmo_sercomm_tx_queue_depth(struct osmo_sercomm_inst *sercomm, uint
return num;
}
-#ifndef HOST_BUILD
+#ifdef EMBEDDED
/* wait until everything has been transmitted, then grab the lock and
* change the baud rate as requested */
void osmo_sercomm_change_speed(struct osmo_sercomm_inst *sercomm, enum uart_baudrate bdrt)