diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2005-11-30 23:47:05 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-07 20:56:41 -0500 |
commit | 164006da316a22eaaa9fbe36f835a01606436c66 (patch) | |
tree | 0855203dc4a14aa68bf83c70077f38ab250dd6cd /sound | |
parent | 1b8623545b42c03eb92e51b28c84acf4b8ba00a3 (diff) | |
download | linux-164006da316a22eaaa9fbe36f835a01606436c66.tar.bz2 |
[PATCH] bogus asm/delay.h includes
asm/delay.h is non-portable; linux/delay.h should be used in generic code.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/oss/emu10k1/recmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/emu10k1/recmgr.c b/sound/oss/emu10k1/recmgr.c index 67c3fd04cfdd..2ce56180e7d4 100644 --- a/sound/oss/emu10k1/recmgr.c +++ b/sound/oss/emu10k1/recmgr.c @@ -29,7 +29,7 @@ ********************************************************************** */ -#include <asm/delay.h> +#include <linux/delay.h> #include "8010.h" #include "recmgr.h" |