[ALSA] ac97_bus - revert last change and do it only in the ALSA tree
[deliverable/linux.git] / sound / oss / os.h
CommitLineData
1da177e4
LT
1#define ALLOW_SELECT
2#undef NO_INLINE_ASM
3#define SHORT_BANNERS
4#define MANUAL_PNP
5#undef DO_TIMINGS
6
7#include <linux/module.h>
8#include <linux/version.h>
9
10#ifdef __KERNEL__
11#include <linux/utsname.h>
12#include <linux/string.h>
13#include <linux/fs.h>
14#include <asm/dma.h>
15#include <asm/io.h>
16#include <asm/param.h>
17#include <linux/sched.h>
18#include <linux/slab.h>
19#include <linux/ioport.h>
20#include <asm/page.h>
21#include <asm/system.h>
22#ifdef __alpha__
23#include <asm/segment.h>
24#endif
25#include <linux/vmalloc.h>
26#include <asm/uaccess.h>
27#include <linux/poll.h>
28#include <linux/pci.h>
29#endif
30
31#include <linux/soundcard.h>
32
33#define FALSE 0
34#define TRUE 1
35
36extern int sound_alloc_dma(int chn, char *deviceID);
37extern int sound_open_dma(int chn, char *deviceID);
38extern void sound_free_dma(int chn);
39extern void sound_close_dma(int chn);
40
41extern void reprogram_timer(void);
42
43#define USE_AUTOINIT_DMA
44
45extern void *sound_mem_blocks[1024];
46extern int sound_nblocks;
47
48#undef PSEUDO_DMA_AUTOINIT
49#define ALLOW_BUFFER_MAPPING
50
51extern struct file_operations oss_sound_fops;
This page took 0.047116 seconds and 5 git commands to generate.