Unverified Commit 8821c46a authored by Felix van Oost's avatar Felix van Oost Committed by GitHub
Browse files

Remove erronous semicolons in macros (#163)

parent f80ed810
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ arm_status arm_cfft_init_##LEN##_f16(arm_cfft_instance_f16 * S)
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(4096,4096);
CFFTINIT_F16(4096,4096)

/**
  @brief         Initialization function for the cfft f16 function with 2048 samples
@@ -157,7 +157,7 @@ CFFTINIT_F16(4096,4096);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(2048,1024);
CFFTINIT_F16(2048,1024)


/**
@@ -171,7 +171,7 @@ CFFTINIT_F16(2048,1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(1024,1024);
CFFTINIT_F16(1024,1024)


/**
@@ -185,7 +185,7 @@ CFFTINIT_F16(1024,1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(512,256);
CFFTINIT_F16(512,256)


/**
@@ -199,7 +199,7 @@ CFFTINIT_F16(512,256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(256,256);
CFFTINIT_F16(256,256)


/**
@@ -213,7 +213,7 @@ CFFTINIT_F16(256,256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(128,64);
CFFTINIT_F16(128,64)


/**
@@ -227,7 +227,7 @@ CFFTINIT_F16(128,64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(64,64);
CFFTINIT_F16(64,64)
 

/**
@@ -241,7 +241,7 @@ CFFTINIT_F16(64,64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(32,16);
CFFTINIT_F16(32,16)
 

/**
@@ -255,7 +255,7 @@ CFFTINIT_F16(32,16);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F16(16,16);
CFFTINIT_F16(16,16)


/**
+9 −9
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ arm_status arm_cfft_init_##LEN##_f32(arm_cfft_instance_f32 * S)\
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(4096,4096);
CFFTINIT_F32(4096,4096)


/**
@@ -148,7 +148,7 @@ CFFTINIT_F32(4096,4096);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(2048,1024);
CFFTINIT_F32(2048,1024)


/**
@@ -162,7 +162,7 @@ CFFTINIT_F32(2048,1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(1024,1024);
CFFTINIT_F32(1024,1024)


/**
@@ -176,7 +176,7 @@ CFFTINIT_F32(1024,1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(512,256);
CFFTINIT_F32(512,256)


/**
@@ -190,7 +190,7 @@ CFFTINIT_F32(512,256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(256,256);
CFFTINIT_F32(256,256)


/**
@@ -204,7 +204,7 @@ CFFTINIT_F32(256,256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(128,64);
CFFTINIT_F32(128,64)


/**
@@ -218,7 +218,7 @@ CFFTINIT_F32(128,64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(64,64);
CFFTINIT_F32(64,64)
 

/**
@@ -232,7 +232,7 @@ CFFTINIT_F32(64,64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(32,16);
CFFTINIT_F32(32,16)


/**
@@ -246,7 +246,7 @@ CFFTINIT_F32(32,16);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F32(16,16);
CFFTINIT_F32(16,16)


/**
+9 −9
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ arm_status arm_cfft_init_##LEN##_f64(arm_cfft_instance_f64 * S)\
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(4096);
CFFTINIT_F64(4096)

/**
  @brief         Initialization function for the cfft f64 function with 2048 samples
@@ -96,7 +96,7 @@ CFFTINIT_F64(4096);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(2048);
CFFTINIT_F64(2048)
 

/**
@@ -110,7 +110,7 @@ CFFTINIT_F64(2048);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(1024);
CFFTINIT_F64(1024)

/**
  @brief         Initialization function for the cfft f64 function with 512 samples
@@ -123,7 +123,7 @@ CFFTINIT_F64(1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(512);
CFFTINIT_F64(512)

/**
  @brief         Initialization function for the cfft f64 function with 256 samples
@@ -136,7 +136,7 @@ CFFTINIT_F64(512);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(256);
CFFTINIT_F64(256)

/**
  @brief         Initialization function for the cfft f64 function with 128 samples
@@ -149,7 +149,7 @@ CFFTINIT_F64(256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(128);
CFFTINIT_F64(128)

/**
  @brief         Initialization function for the cfft f64 function with 64 samples
@@ -162,7 +162,7 @@ CFFTINIT_F64(128);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(64);
CFFTINIT_F64(64)

/**
  @brief         Initialization function for the cfft f64 function with 32 samples
@@ -175,7 +175,7 @@ CFFTINIT_F64(64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(32);
CFFTINIT_F64(32)

/**
  @brief         Initialization function for the cfft f64 function with 16 samples
@@ -188,7 +188,7 @@ CFFTINIT_F64(32);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_F64(16);
CFFTINIT_F64(16)

/**
  @brief         Generic initialization function for the cfft f64 function
+9 −9
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ arm_status arm_cfft_init_##LEN##_q15(arm_cfft_instance_q15 * S)\
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(4096,4096);
CFFTINIT_Q15(4096,4096)

/**
  @brief         Initialization function for the cfft q15 function for 2048 samples
@@ -149,7 +149,7 @@ CFFTINIT_Q15(4096,4096);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(2048,1024);
CFFTINIT_Q15(2048,1024)

/**
  @brief         Initialization function for the cfft q15 function for 1024 samples
@@ -162,7 +162,7 @@ CFFTINIT_Q15(2048,1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(1024,1024);
CFFTINIT_Q15(1024,1024)

/**
  @brief         Initialization function for the cfft q15 function for 512 samples
@@ -175,7 +175,7 @@ CFFTINIT_Q15(1024,1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(512,256);
CFFTINIT_Q15(512,256)

/**
  @brief         Initialization function for the cfft q15 function for 256 samples
@@ -188,7 +188,7 @@ CFFTINIT_Q15(512,256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(256,256);
CFFTINIT_Q15(256,256)

/**
  @brief         Initialization function for the cfft q15 function for 128 samples
@@ -201,7 +201,7 @@ CFFTINIT_Q15(256,256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(128,64);
CFFTINIT_Q15(128,64)

/**
  @brief         Initialization function for the cfft q15 function for 64 samples
@@ -214,7 +214,7 @@ CFFTINIT_Q15(128,64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(64,64);
CFFTINIT_Q15(64,64)

/**
  @brief         Initialization function for the cfft q15 function for 32 samples
@@ -227,7 +227,7 @@ CFFTINIT_Q15(64,64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(32,16);
CFFTINIT_Q15(32,16)

/**
  @brief         Initialization function for the cfft q15 function for 16 samples
@@ -240,7 +240,7 @@ CFFTINIT_Q15(32,16);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q15(16,16);
CFFTINIT_Q15(16,16)

/**
  @brief         Generic initialization function for the cfft q15 function
+9 −9
Original line number Diff line number Diff line
@@ -137,7 +137,7 @@ arm_status arm_cfft_init_##LEN##_q31(arm_cfft_instance_q31 * S)\
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(4096,4096);
CFFTINIT_Q31(4096,4096)

/**
  @brief         Initialization function for the cfft q31 function for 2048 samples
@@ -150,7 +150,7 @@ CFFTINIT_Q31(4096,4096);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(2048,1024);
CFFTINIT_Q31(2048,1024)

/**
  @brief         Initialization function for the cfft q31 function for 1024 samples
@@ -163,7 +163,7 @@ CFFTINIT_Q31(2048,1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(1024,1024);
CFFTINIT_Q31(1024,1024)

/**
  @brief         Initialization function for the cfft q31 function for 512 samples
@@ -176,7 +176,7 @@ CFFTINIT_Q31(1024,1024);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(512,256);
CFFTINIT_Q31(512,256)

/**
  @brief         Initialization function for the cfft q31 function for 256 samples
@@ -189,7 +189,7 @@ CFFTINIT_Q31(512,256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(256,256);
CFFTINIT_Q31(256,256)

/**
  @brief         Initialization function for the cfft q31 function for 128 samples
@@ -202,7 +202,7 @@ CFFTINIT_Q31(256,256);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(128,64);
CFFTINIT_Q31(128,64)

/**
  @brief         Initialization function for the cfft q31 function for 64 samples
@@ -215,7 +215,7 @@ CFFTINIT_Q31(128,64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(64,64);
CFFTINIT_Q31(64,64)

/**
  @brief         Initialization function for the cfft q31 function for 32 samples
@@ -228,7 +228,7 @@ CFFTINIT_Q31(64,64);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(32,16);
CFFTINIT_Q31(32,16)

/**
  @brief         Initialization function for the cfft q31 function for 16 samples
@@ -241,7 +241,7 @@ CFFTINIT_Q31(32,16);
                Other versions can still initialize directly the data structure using 
                variables declared in arm_const_structs.h
 */
CFFTINIT_Q31(16,16);
CFFTINIT_Q31(16,16)

/**
  @brief         Generic initialization function for the cfft q31 function
Loading