From 4a25d6b8f64a5e8f8daa3966a8718201a38cf416 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 11 Jan 2018 17:55:03 +0100 Subject: [PATCH] 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 --- Transceiver52M/arm/convert.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Transceiver52M/arm/convert.c b/Transceiver52M/arm/convert.c index 3880b588..c94a3d7c 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,