diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2009-09-21 17:00:58 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 07:17:23 -0700 |
commit | 2a20b05f8178801c0a07324d92fe53c32177de97 (patch) | |
tree | ed5af3518a6b0873707b3d8cca104f925a3fa766 /drivers/media | |
parent | 43c1266ce4dc06bfd236cec31e11e9ecd69c0bef (diff) | |
download | op-kernel-dev-2a20b05f8178801c0a07324d92fe53c32177de97.zip op-kernel-dev-2a20b05f8178801c0a07324d92fe53c32177de97.tar.gz |
drivers/media/dvb/pt1/pt1.c needs vmalloc.h
alpha:
drivers/media/dvb/pt1/pt1.c: In function 'pt1_cleanup_tables':
drivers/media/dvb/pt1/pt1.c:422: error: implicit declaration of function 'vfree'
drivers/media/dvb/pt1/pt1.c: In function 'pt1_init_tables':
drivers/media/dvb/pt1/pt1.c:431: error: implicit declaration of function 'vmalloc'
drivers/media/dvb/pt1/pt1.c:431: warning: assignment makes pointer from integer without a cast
Acked-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/dvb/pt1/pt1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/dvb/pt1/pt1.c b/drivers/media/dvb/pt1/pt1.c index 8ffbcec..81e623a 100644 --- a/drivers/media/dvb/pt1/pt1.c +++ b/drivers/media/dvb/pt1/pt1.c @@ -23,6 +23,7 @@ #include <linux/kernel.h> #include <linux/module.h> +#include <linux/vmalloc.h> #include <linux/pci.h> #include <linux/kthread.h> #include <linux/freezer.h> |