diff options
Diffstat (limited to 'sound/oss/pas2_pcm.c')
| -rw-r--r-- | sound/oss/pas2_pcm.c | 18 | 
1 files changed, 0 insertions, 18 deletions
diff --git a/sound/oss/pas2_pcm.c b/sound/oss/pas2_pcm.c index 6f13ab4afc6..474803b52f7 100644 --- a/sound/oss/pas2_pcm.c +++ b/sound/oss/pas2_pcm.c @@ -22,10 +22,6 @@  #include "pas2.h" -#ifndef DEB -#define DEB(WHAT) -#endif -  #define PAS_PCM_INTRBITS (0x08)  /*   * Sample buffer timer interrupt enable @@ -156,8 +152,6 @@ static int pas_audio_ioctl(int dev, unsigned int cmd, void __user *arg)  	int val, ret;  	int __user *p = arg; -	DEB(printk("pas2_pcm.c: static int pas_audio_ioctl(unsigned int cmd = %X, unsigned int arg = %X)\n", cmd, arg)); -  	switch (cmd)   	{  	case SOUND_PCM_WRITE_RATE: @@ -204,8 +198,6 @@ static int pas_audio_ioctl(int dev, unsigned int cmd, void __user *arg)  static void pas_audio_reset(int dev)  { -	DEB(printk("pas2_pcm.c: static void pas_audio_reset(void)\n")); -  	pas_write(pas_read(0xF8A) & ~0x40, 0xF8A);	/* Disable PCM */  } @@ -214,8 +206,6 @@ static int pas_audio_open(int dev, int mode)  	int             err;  	unsigned long   flags; -	DEB(printk("pas2_pcm.c: static int pas_audio_open(int mode = %X)\n", mode)); -  	spin_lock_irqsave(&pas_lock, flags);  	if (pcm_busy)  	{ @@ -239,8 +229,6 @@ static void pas_audio_close(int dev)  {  	unsigned long   flags; -	DEB(printk("pas2_pcm.c: static void pas_audio_close(void)\n")); -  	spin_lock_irqsave(&pas_lock, flags);  	pas_audio_reset(dev); @@ -256,8 +244,6 @@ static void pas_audio_output_block(int dev, unsigned long buf, int count,  {  	unsigned long   flags, cnt; -	DEB(printk("pas2_pcm.c: static void pas_audio_output_block(char *buf = %P, int count = %X)\n", buf, count)); -  	cnt = count;  	if (audio_devs[dev]->dmap_out->dma > 3)  		cnt >>= 1; @@ -303,8 +289,6 @@ static void pas_audio_start_input(int dev, unsigned long buf, int count,  	unsigned long   flags;  	int             cnt; -	DEB(printk("pas2_pcm.c: static void pas_audio_start_input(char *buf = %P, int count = %X)\n", buf, count)); -  	cnt = count;  	if (audio_devs[dev]->dmap_out->dma > 3)  		cnt >>= 1; @@ -388,8 +372,6 @@ static struct audio_driver pas_audio_driver =  void __init pas_pcm_init(struct address_info *hw_config)  { -	DEB(printk("pas2_pcm.c: long pas_pcm_init()\n")); -  	pcm_bitsok = 8;  	if (pas_read(0xEF8B) & 0x08)  		pcm_bitsok |= 16;  | 
