diff options
author | Andrew Morton <[email protected]> | 2006-05-20 15:00:35 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2006-05-21 12:59:22 -0700 |
commit | 1caef6aa97a3a43a82f238d8b31bf177de34a4bf (patch) | |
tree | 168195b4a61f2676850eb7468f45d9396124af8d | |
parent | fad43488b8c9b3914fcdc48ee3b8d30aeb49fa30 (diff) |
[PATCH] es18xx build fix
sound/isa/es18xx.c: In function `snd_es18xx_identify':
sound/isa/es18xx.c:1606: warning: implicit declaration of function `udelay'
Cc: Jaroslav Kysela <[email protected]>
Cc: Takashi Iwai <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | sound/isa/es18xx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/isa/es18xx.c b/sound/isa/es18xx.c index a36ec1daa5cb..e6945db8ed1b 100644 --- a/sound/isa/es18xx.c +++ b/sound/isa/es18xx.c @@ -85,6 +85,8 @@ #include <linux/pnp.h> #include <linux/isapnp.h> #include <linux/moduleparam.h> +#include <linux/delay.h> + #include <asm/io.h> #include <asm/dma.h> #include <sound/core.h> |