Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29e54406 authored by Myles Watson's avatar Myles Watson
Browse files

embdrv: Fix include ordering before clang-format

clang-format re-orders #include statements.  Fix the includes
so that order is less important.

Test: mma -j32

Change-Id: Ia548c2c7d5669e0e759b3c5e7fa12a1ec48cc03e
parent a2356a4b
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -25,6 +25,8 @@
#ifndef SBC_DCT_H
#ifndef SBC_DCT_H
#define SBC_DCT_H
#define SBC_DCT_H


#include "sbc_enc_func_declare.h"

#if (SBC_ARM_ASM_OPT == TRUE)
#if (SBC_ARM_ASM_OPT == TRUE)
#define SBC_MULT_32_16_SIMPLIFIED(s16In2, s32In1, s32OutLow)					\
#define SBC_MULT_32_16_SIMPLIFIED(s16In2, s32In1, s32OutLow)					\
{																			    \
{																			    \
+1 −1
Original line number Original line Diff line number Diff line
@@ -25,7 +25,7 @@
#ifndef SBC_FUNCDECLARE_H
#ifndef SBC_FUNCDECLARE_H
#define SBC_FUNCDECLARE_H
#define SBC_FUNCDECLARE_H


/*#include "sbc_encoder.h"*/
#include "sbc_encoder.h"
/* Global data */
/* Global data */
#if (SBC_IS_64_MULT_IN_WINDOW_ACCU == FALSE)
#if (SBC_IS_64_MULT_IN_WINDOW_ACCU == FALSE)
extern const int16_t gas32CoeffFor4SBs[];
extern const int16_t gas32CoeffFor4SBs[];