root/kernel/chr_drv/sound/sound_stub.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. soundcard_init
  2. sound_mem_init

   1 /*
   2 
   3 This file contains just a stub version of the Sound Driver.
   4 
   5 The real version is available at tsx-11.mit.edu
   6 (pub/linux/ALPHA/sound/snd-driv-0.x.tar.Z)
   7 
   8 Hannu Savolainen
   9 hsavolai@cs.helsinki.fi
  10 */
  11 
  12 long soundcard_init(long mem_start)
     /* [previous][next][first][last][top][bottom][index][help] */
  13 {
  14         return mem_start;
  15 }
  16 
  17 void sound_mem_init(void)
     /* [previous][next][first][last][top][bottom][index][help] */
  18 {
  19 }
  20 
  21 #ifdef CONFIG_SOUND
  22 #error The Sound Driver not installed.
  23 #endif

/* [previous][next][first][last][top][bottom][index][help] */