aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/arch/x86/convolve.c
diff options
context:
space:
mode:
Diffstat (limited to 'Transceiver52M/arch/x86/convolve.c')
-rw-r--r--Transceiver52M/arch/x86/convolve.c4
1 files changed, 2 insertions, 2 deletions
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;