diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-09-01 05:02:51 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-10 01:07:51 (GMT) |
commit | f61b48f7a838bb3d089b12fc9d03fd53c9ef5022 (patch) | |
tree | 6fb04e2f9ee93a26bc6126ee9c83854a8ef55df6 | |
parent | 1f5ef19779df2c2f75870332b37dd3004c08a515 (diff) | |
download | linux-fsl-qoriq-f61b48f7a838bb3d089b12fc9d03fd53c9ef5022.tar.xz |
V4L/DVB (6142): cx25840: fix build warning
Fix the following build warning:
CC [M] cx25840-core.o
cx25840-core.c: In function 'init_dll1':
cx25840-core.c:147: warning: implicit declaration of function 'udelay'
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/video/cx25840/cx25840-core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/video/cx25840/cx25840-core.c b/drivers/media/video/cx25840/cx25840-core.c index 90f7859..15f191e 100644 --- a/drivers/media/video/cx25840/cx25840-core.c +++ b/drivers/media/video/cx25840/cx25840-core.c @@ -34,6 +34,7 @@ #include <linux/slab.h> #include <linux/videodev2.h> #include <linux/i2c.h> +#include <linux/delay.h> #include <media/v4l2-common.h> #include <media/v4l2-chip-ident.h> #include <media/cx25840.h> |