diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2011-03-16 17:39:28 +1100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-03-16 07:47:33 +0100 |
commit | 5de0ee574be8f6922a6c33f2fbc7e9b130a2f626 (patch) | |
tree | 17d6296873f85b2a2cf0513e9de38561737eb643 | |
parent | ec00f5e444706cb1902731655f3dcd04fc3df7b0 (diff) | |
download | blackbird-obmc-linux-5de0ee574be8f6922a6c33f2fbc7e9b130a2f626.tar.gz blackbird-obmc-linux-5de0ee574be8f6922a6c33f2fbc7e9b130a2f626.zip |
ALSA: firewire - msleep needs delay.h
fixes this error:
sound/firewire/fcp.c: In function 'fcp_avc_transaction':
sound/firewire/fcp.c:103: error: implicit declaration of function 'msleep'
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/firewire/fcp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/firewire/fcp.c b/sound/firewire/fcp.c index c20bd9c8f5ab..ec578b5ad8da 100644 --- a/sound/firewire/fcp.c +++ b/sound/firewire/fcp.c @@ -13,6 +13,7 @@ #include <linux/sched.h> #include <linux/spinlock.h> #include <linux/wait.h> +#include <linux/delay.h> #include "fcp.h" #include "lib.h" |