diff options
Diffstat (limited to 'include/linux/console_struct.h')
| -rw-r--r-- | include/linux/console_struct.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/console_struct.h b/include/linux/console_struct.h index c0ec478ea5bf..ab137f97ecbd 100644 --- a/include/linux/console_struct.h +++ b/include/linux/console_struct.h @@ -17,8 +17,8 @@  #include <linux/vt.h>  #include <linux/workqueue.h> -struct vt_struct;  struct uni_pagedir; +struct uni_screen;  #define NPAR 16 @@ -140,7 +140,7 @@ struct vc_data {  	struct vc_data **vc_display_fg;		/* [!] Ptr to var holding fg console for this display */  	struct uni_pagedir *vc_uni_pagedir;  	struct uni_pagedir **vc_uni_pagedir_loc; /* [!] Location of uni_pagedir variable for this console */ -	bool vc_panic_force_write; /* when oops/panic this VC can accept forced output/blanking */ +	struct uni_screen *vc_uni_screen;	/* unicode screen content */  	/* additional information is in vt_kern.h */  }; @@ -148,7 +148,7 @@ struct vc {  	struct vc_data *d;  	struct work_struct SAK_work; -	/* might add  scrmem, vt_struct, kbd  at some time, +	/* might add  scrmem, kbd  at some time,  	   to have everything in one place - the disadvantage  	   would be that vc_cons etc can no longer be static */  };  | 
