From: "Antonino A. Daplas" 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 Signed-off-by: Andrew Morton --- include/linux/console_struct.h | 2 ++ 1 files changed, 2 insertions(+) diff -puN include/linux/console_struct.h~console-fix-compile-error include/linux/console_struct.h --- devel/include/linux/console_struct.h~console-fix-compile-error 2005-10-18 19:12:31.000000000 -0700 +++ devel-akpm/include/linux/console_struct.h 2005-10-18 19:12:31.000000000 -0700 @@ -9,6 +9,8 @@ * to achieve effects such as fast scrolling by changing the origin. */ +#include + struct vt_struct; #define NPAR 16 _