reshuffle included files to include config.h as first

config.h may contain defines like _FILE_OFFSET_BITS which influence
the system wide include files (off_t types, open -> open64 function
usage etc.).

Related: https://github.com/alsa-project/alsa-lib/pull/333
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2023-08-30 18:22:59 +02:00
parent 6142ff0ca7
commit ad3a8b8b31
77 changed files with 92 additions and 101 deletions

View file

@ -17,7 +17,6 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include "list.h"
#include "tplg_local.h"
/* write a block, track the position */

View file

@ -17,7 +17,6 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include "list.h"
#include "tplg_local.h"
/* mapping of channel text names to types */

View file

@ -17,7 +17,6 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include "list.h"
#include "tplg_local.h"
#define ENUM_VAL_SIZE (SNDRV_CTL_ELEM_ID_NAME_MAXLEN >> 2)

View file

@ -17,7 +17,6 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include "list.h"
#include "tplg_local.h"
/* mapping of widget text names to types */

View file

@ -17,7 +17,6 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include "list.h"
#include "tplg_local.h"
#include <ctype.h>

View file

@ -15,7 +15,6 @@
Authors: Jaroslav Kysela <perex@perex.cz>
*/
#include "list.h"
#include "tplg_local.h"
int tplg_decode_template(snd_tplg_t *tplg,

View file

@ -17,7 +17,6 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include "list.h"
#include "tplg_local.h"
struct tplg_table tplg_table[] = {

View file

@ -15,7 +15,6 @@
Authors: Jaroslav Kysela <perex@perex.cz>
*/
#include "list.h"
#include "tplg_local.h"
/* verbose output detailing each object size and file position */

View file

@ -17,7 +17,6 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include "list.h"
#include "tplg_local.h"
/* mapping of kcontrol text names to types */

View file

@ -17,9 +17,8 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include <sys/stat.h>
#include "list.h"
#include "tplg_local.h"
#include <sys/stat.h>
/*
* Get integer value

View file

@ -17,7 +17,6 @@
Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#include "list.h"
#include "tplg_local.h"
#define RATE(v) [SND_PCM_RATE_##v] = #v

View file

@ -15,7 +15,6 @@
Authors: Jaroslav Kysela <perex@perex.cz>
*/
#include "list.h"
#include "tplg_local.h"
#define SAVE_ALLOC_SHIFT (13) /* 8192 bytes */

View file

@ -18,7 +18,6 @@
*/
#include "list.h"
#include "tplg_local.h"
#define TEXT_SIZE_MAX \

View file

@ -10,11 +10,12 @@
* Lesser General Public License for more details.
*/
#include "local.h"
#include <limits.h>
#include <stdint.h>
#include <stdbool.h>
#include "local.h"
#include "list.h"
#include "bswap.h"
#include "topology.h"