diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2005-11-07 01:00:51 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 07:53:52 -0800 |
commit | e07dea98761270249f33e733ff86420bc52ccab6 (patch) | |
tree | 30a63c6af4666fb33e411b2877d981aeb04d35b2 /include/linux/console_struct.h | |
parent | 5fab851ea15206cc375582ad0db79f7827325098 (diff) |
[PATCH] console: Fix compile error
Fix following compile error (From Kernel Bugzilla Bug 5427):
include/linux/console_struct.h:53: error: field `vt_mode' has incomplete type
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/console_struct.h')
-rw-r--r-- | include/linux/console_struct.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/console_struct.h b/include/linux/console_struct.h index 725be90ef55e..f8e5587a0f92 100644 --- a/include/linux/console_struct.h +++ b/include/linux/console_struct.h @@ -9,6 +9,8 @@ * to achieve effects such as fast scrolling by changing the origin. */ +#include <linux/vt.h> + struct vt_struct; #define NPAR 16 |