diff options
author | Andrew Morton <akpm@osdl.org> | 2005-10-31 23:44:30 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-01 21:44:46 -0800 |
commit | ce4633704038f9bf39f20c10691747d6fc127bf4 (patch) | |
tree | 6171da06601000cb303d8abcb0d818d12edec0e7 /drivers | |
parent | ebd50e500185a711e708653460d19f1dbb3ef944 (diff) | |
download | linux-next-ce4633704038f9bf39f20c10691747d6fc127bf4.tar.gz |
[PATCH] tlclk build fix
drivers/char/tlclk.c: In function `tlclk_init':
drivers/char/tlclk.c:775: warning: implicit declaration of function `platform_device_register_simple'
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/tlclk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/tlclk.c b/drivers/char/tlclk.c index 18cdd4361dc6..12167c04fa4c 100644 --- a/drivers/char/tlclk.c +++ b/drivers/char/tlclk.c @@ -43,6 +43,7 @@ #include <linux/sysfs.h> #include <linux/device.h> #include <linux/miscdevice.h> +#include <linux/platform_device.h> #include <asm/io.h> /* inb/outb */ #include <asm/uaccess.h> |