aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-01-11 17:55:03 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2018-01-11 18:45:12 +0100
commit4a25d6b8f64a5e8f8daa3966a8718201a38cf416 (patch)
treef816080753d23a3d88c6ca1e5443a47432cefa8e
parent79baee3a8f06894d88bbde1b9dffab531c5dc0d2 (diff)
arm/convert.c: Add missing convert_init implementation
osmo-trx.cpp calls convert_init, which in case of building using --with-neon is not implemented and the compiler stops with an error. Error was introduced in 7e07cf23464532ca156fe4ea4430928da2cbbff1. Related: OS#2720 Change-Id: I9840d374d13b525b97f978ea0c5ed9e8421072a0
-rw-r--r--Transceiver52M/arm/convert.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Transceiver52M/arm/convert.c b/Transceiver52M/arm/convert.c
index 3880b58..c94a3d7 100644
--- a/Transceiver52M/arm/convert.c
+++ b/Transceiver52M/arm/convert.c
@@ -28,6 +28,9 @@
void neon_convert_ps_si16_4n(short *, const float *, const float *, int);
void neon_convert_si16_ps_4n(float *, const short *, int);
+void convert_init(void) {
+}
+
/* 4*N 16-bit signed integer conversion with remainder */
static void neon_convert_si16_ps(float *out,
const short *in,