diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-01-16 10:09:13 -0300 |
---|---|---|
committer | Willy Tarreau <w@1wt.eu> | 2011-04-30 16:53:07 +0200 |
commit | b341209718cb0c95d23baa65bde68a313208ee36 (patch) | |
tree | f25f5c05cfb326bb4b6f340792c69d17f7779426 | |
parent | b1f22654d1b95686e2ba573a24da196286f2f25f (diff) |
radio-aimslab.c needs #include <linux/delay.h>
commit 2400982a2e8a8e4e95f0a0e1517bbe63cc88038f upstream.
Commit e3c92215198cb6aa00ad38db2780faa6b72e0a3f ("[media] radio-aimslab.c: Fix
gcc 4.5+ bug") removed the include, but introduced new callers of msleep():
| drivers/media/radio/radio-aimslab.c: In function ‘rt_decvol’:
| drivers/media/radio/radio-aimslab.c:76: error: implicit declaration of function ‘msleep’
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Cc: dann frazier <dannf@debian.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/media/radio/radio-aimslab.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c index f17c89789b57..f068f9b6728f 100644 --- a/drivers/media/radio/radio-aimslab.c +++ b/drivers/media/radio/radio-aimslab.c @@ -33,6 +33,7 @@ #include <linux/ioport.h> /* request_region */ #include <asm/io.h> /* outb, outb_p */ #include <asm/uaccess.h> /* copy to/from user */ +#include <linux/delay.h> /* msleep */ #include <linux/videodev2.h> /* kernel radio structs */ #include <media/v4l2-common.h> #include <media/v4l2-ioctl.h> |