mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-21 01:40:09 -05:00
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:
parent
6142ff0ca7
commit
ad3a8b8b31
77 changed files with 92 additions and 101 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@
|
|||
Liam Girdwood <liam.r.girdwood@linux.intel.com>
|
||||
*/
|
||||
|
||||
#include "list.h"
|
||||
#include "tplg_local.h"
|
||||
#include <ctype.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@
|
|||
Liam Girdwood <liam.r.girdwood@linux.intel.com>
|
||||
*/
|
||||
|
||||
#include "list.h"
|
||||
#include "tplg_local.h"
|
||||
|
||||
struct tplg_table tplg_table[] = {
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
Authors: Jaroslav Kysela <perex@perex.cz>
|
||||
*/
|
||||
|
||||
#include "list.h"
|
||||
#include "tplg_local.h"
|
||||
|
||||
#define SAVE_ALLOC_SHIFT (13) /* 8192 bytes */
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
|
||||
*/
|
||||
|
||||
#include "list.h"
|
||||
#include "tplg_local.h"
|
||||
|
||||
#define TEXT_SIZE_MAX \
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue