aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/arch
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-07-22 12:03:39 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-07-22 12:03:39 +0200
commitbdb970e4957b7d1cf22bc530a81b2b8a2ae9a2ce (patch)
treee462a1dd9e98a9a6c7db54eeb800e47e011b3ce3 /Transceiver52M/arch
parente6319ed32ad7e9d0739772d07ff230071c8f7973 (diff)
cosmetic: Fix trailing whitespace in several files
Diffstat (limited to 'Transceiver52M/arch')
-rw-r--r--Transceiver52M/arch/arm/mult_neon.S2
-rw-r--r--Transceiver52M/arch/common/convert_base.c1
-rw-r--r--Transceiver52M/arch/common/fft.c14
3 files changed, 8 insertions, 9 deletions
diff --git a/Transceiver52M/arch/arm/mult_neon.S b/Transceiver52M/arch/arm/mult_neon.S
index 162846e..113e227 100644
--- a/Transceiver52M/arch/arm/mult_neon.S
+++ b/Transceiver52M/arch/arm/mult_neon.S
@@ -1,5 +1,5 @@
/*
- * NEON complex multiplication
+ * NEON complex multiplication
* Copyright (C) 2012,2013 Thomas Tsou <tom@tsou.cc>
*
* This library is free software; you can redistribute it and/or
diff --git a/Transceiver52M/arch/common/convert_base.c b/Transceiver52M/arch/common/convert_base.c
index 5251fb8..8d29310 100644
--- a/Transceiver52M/arch/common/convert_base.c
+++ b/Transceiver52M/arch/common/convert_base.c
@@ -31,4 +31,3 @@ void base_convert_short_float(float *out, const short *in, int len)
for (int i = 0; i < len; i++)
out[i] = in[i];
}
-
diff --git a/Transceiver52M/arch/common/fft.c b/Transceiver52M/arch/common/fft.c
index 18b2de7..ed79d13 100644
--- a/Transceiver52M/arch/common/fft.c
+++ b/Transceiver52M/arch/common/fft.c
@@ -1,18 +1,18 @@
/*
- * Fast Fourier transform
+ * Fast Fourier transform
*
* Copyright (C) 2012 Tom Tsou <tom@tsou.cc>
- *
+ *
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
- *
+ *
* You should have received a copy of the GNU Affero General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
* See the COPYING file in the main directory for details.
@@ -32,9 +32,9 @@ struct fft_hdl {
fftwf_plan fft_plan;
};
-/*! \brief Initialize FFT backend
+/*! \brief Initialize FFT backend
* \param[in] reverse FFT direction
- * \param[in] m FFT length
+ * \param[in] m FFT length
* \param[in] istride input stride count
* \param[in] ostride output stride count
* \param[in] in input buffer (FFTW aligned)
@@ -92,7 +92,7 @@ void fft_free(void *ptr)
free(ptr);
}
-/*! \brief Free FFT backend resources
+/*! \brief Free FFT backend resources
*/
void free_fft(struct fft_hdl *hdl)
{