source: GPL/trunk/alsa-kernel/include/sound/config.h@ 598

Last change on this file since 598 was 598, checked in by David Azarewicz, 8 years ago

Merged/reintegrated v2 branch into trunk. Trunk is now v2

File size: 3.4 KB
Line 
1#ifndef __ALSA_CONFIG_H__
2#define __ALSA_CONFIG_H__
3
4/*
5 * Configuration header file for compilation of the ALSA driver
6 */
7
8
9#include <linux/version.h>
10#include <linux/types.h>
11#include <linux/fcntl.h>
12#include <linux/signal.h>
13#include <linux/kdev_t.h>
14#include <linux/wait.h>
15#include <linux/list.h>
16#include <linux/init.h>
17#include <linux/dcache.h>
18#include <linux/vmalloc.h>
19#include <linux/tqueue.h>
20#include <linux/time.h>
21#include <linux/timer.h>
22#include <linux/stat.h>
23#include <linux/major.h>
24#include <linux/fs.h>
25#include <linux/pid.h>
26#include <linux/err.h>
27#include <linux/gfp.h>
28#include <linux/workqueue.h>
29#include <linux/byteorder/little_endian.h>
30#include <linux/lockdep.h>
31#include <linux/string.h>
32#include <asm/ioctl.h>
33#include <asm/hardirq.h>
34#include <asm/processor.h>
35#include <asm/siginfo.h>
36#include <dbgos2.h>
37#include <limits.h>
38#include <sys/cdefs.h>
39#include <stdio.h>
40#include <linux/config.h>
41#include <linux/module.h>
42#include <linux/utsname.h>
43#include <linux/errno.h>
44#include <linux/kernel.h>
45#include <linux/sched.h>
46#include <linux/malloc.h>
47#include <linux/delay.h>
48#include <linux/ioport.h>
49#include <asm/io.h>
50#include <asm/irq.h>
51#include <asm/segment.h>
52#include <asm/uaccess.h>
53#include <asm/system.h>
54#include <asm/string.h>
55#include <linux/pci.h>
56#include <linux/interrupt.h>
57#include <linux/pagemap.h>
58#include <linux/fs.h>
59#include <linux/fcntl.h>
60#include <linux/vmalloc.h>
61#include <linux/poll.h>
62#include <linux/reboot.h>
63#include <linux/init.h>
64#include <linux/lockdep.h>
65#include <linux/smp_lock.h>
66#include <linux/dma-mapping.h>
67#include "compat_22.h"
68
69#include <sound/asound.h>
70#include <sound/asoundef.h>
71
72/*
73 * ==========================================================================
74 */
75
76#define ATTRIBUTE_UNUSED
77#define CONFIG_HAS_DMA
78#define CONFIG_HAVE_KZALLOC
79#define CONFIG_HAVE_KCALLOC
80#define CONFIG_HAVE_KSTRDUP
81#define CONFIG_HAVE_MSLEEP
82#define CONFIG_HAVE_PCI_DEV_PRESENT
83#define CONFIG_PCI
84#define CONFIG_PM
85#define CONFIG_PROC_FS
86#ifdef DEBUG
87#define CONFIG_SND_DEBUG_DETECT
88#define CONFIG_SND_DEBUG_VERBOSE
89#endif
90#define CONFIG_SND_DMA_SGBUF
91#define CONFIG_SND_HDA_CODEC_ANALOG
92#define CONFIG_SND_HDA_CODEC_CONEXANT
93#define CONFIG_SND_HDA_CODEC_CMEDIA
94#define CONFIG_SND_HDA_CODEC_REALTEK
95#define CONFIG_SND_HDA_CODEC_SIGMATEL
96#define CONFIG_SND_HDA_CODEC_SI3054
97#define CONFIG_SND_HDA_CODEC_VIA
98#define CONFIG_SND_HDA_GENERIC
99#define CONFIG_SND_HDA_HWDEP
100#define CONFIG_SND_OSSEMUL
101#define CONFIG_SND_PCM_OSS
102#define CONFIG_SND_SEQUENCER
103#define CONFIG_SOUND
104#define CONFIG_SYSFS_DEPRECATED
105#define PCI_NEW_SUSPEND
106#define SNDRV_LITTLE_ENDIAN
107
108
109/* Still need to work out where the following really belong */
110#undef interrupt
111#define __builtin_return_address(a) 0
112#define __builtin_expect(x, expected_value) (x)
113#define BUG_ON(x) /* nothing */
114#define assert(a)
115#define no_llseek NULL
116#define noop_llseek NULL
117
118struct class;
119struct class_device;
120struct class_device_attribute {int x; }; /* dummy */
121#define __ATTR(cls,perm,read,write) {0 } /* dummy */
122
123#define min_t(type, x, y) ({ \
124 type __min1 = (x); \
125 type __min2 = (y); \
126 __min1 < __min2 ? __min1: __min2; })
127
128#define true 1
129#define false 0
130
131#define BUILD_BUG_ON(condition)
132
133#endif //__ALSA_CONFIG_H__
Note: See TracBrowser for help on using the repository browser.