aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/arch
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2019-10-13 19:08:00 +0200
committerlaforge <laforge@osmocom.org>2019-10-17 08:06:19 +0000
commit066fd04f471ad55639b5cc6dd13b8aa9ca7c1f40 (patch)
tree47d55c870c077ea000bc39705f5021f7b65f6e7d /Transceiver52M/arch
parentaeaba02e024ceb8858ac9a986d7ce5d0506cefb6 (diff)
Fix common misspellings and typos
Diffstat (limited to 'Transceiver52M/arch')
-rw-r--r--Transceiver52M/arch/arm/convolve.c2
-rw-r--r--Transceiver52M/arch/common/fft.c2
-rw-r--r--Transceiver52M/arch/x86/convert.c2
-rw-r--r--Transceiver52M/arch/x86/convolve.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/Transceiver52M/arch/arm/convolve.c b/Transceiver52M/arch/arm/convolve.c
index 63b1655..adb718d 100644
--- a/Transceiver52M/arch/arm/convolve.c
+++ b/Transceiver52M/arch/arm/convolve.c
@@ -58,7 +58,7 @@ static void neon_conv_cmplx_4n(float *x, float *h, float *y, int h_len, int len)
}
#endif
-/* API: Initalize convolve module */
+/* API: Initialize convolve module */
void convolve_init(void)
{
/* Stub */
diff --git a/Transceiver52M/arch/common/fft.c b/Transceiver52M/arch/common/fft.c
index ad096b1..2261672 100644
--- a/Transceiver52M/arch/common/fft.c
+++ b/Transceiver52M/arch/common/fft.c
@@ -103,7 +103,7 @@ void free_fft(struct fft_hdl *hdl)
}
/*! \brief Run multiple DFT operations with the initialized plan
- * \param[in] hdl handle to an intitialized fft struct
+ * \param[in] hdl handle to an initialized fft struct
*
* Input and output buffers are configured with init_fft().
*/
diff --git a/Transceiver52M/arch/x86/convert.c b/Transceiver52M/arch/x86/convert.c
index 07cdf59..bbcfd67 100644
--- a/Transceiver52M/arch/x86/convert.c
+++ b/Transceiver52M/arch/x86/convert.c
@@ -27,7 +27,7 @@
#include "config.h"
#endif
-/* Architecture dependant function pointers */
+/* Architecture dependent function pointers */
struct convert_cpu_context {
void (*convert_si16_ps_16n) (float *, const short *, int);
void (*convert_si16_ps) (float *, const short *, int);
diff --git a/Transceiver52M/arch/x86/convolve.c b/Transceiver52M/arch/x86/convolve.c
index 209d377..66fca74 100644
--- a/Transceiver52M/arch/x86/convolve.c
+++ b/Transceiver52M/arch/x86/convolve.c
@@ -27,7 +27,7 @@
#include "config.h"
#endif
-/* Architecture dependant function pointers */
+/* Architecture dependent function pointers */
struct convolve_cpu_context {
void (*conv_cmplx_4n) (const float *, int, const float *, int, float *,
int, int, int);
@@ -66,7 +66,7 @@ int _base_convolve_complex(const float *x, int x_len,
int bounds_check(int x_len, int h_len, int y_len,
int start, int len);
-/* API: Initalize convolve module */
+/* API: Initialize convolve module */
void convolve_init(void)
{
c.conv_cmplx_4n = (void *)_base_convolve_complex;