Commit ab24f7cc authored by David S. Miller's avatar David S. Miller

[VT]: vc_pos needs to be unsigned long.

parent 0d75a96a
...@@ -37,7 +37,7 @@ struct vc_data { ...@@ -37,7 +37,7 @@ struct vc_data {
unsigned short vc_s_complement_mask; /* Saved mouse pointer mask */ unsigned short vc_s_complement_mask; /* Saved mouse pointer mask */
unsigned int vc_x, vc_y; /* Cursor position */ unsigned int vc_x, vc_y; /* Cursor position */
unsigned int vc_saved_x, vc_saved_y; unsigned int vc_saved_x, vc_saved_y;
unsigned int vc_pos; /* Cursor address */ unsigned long vc_pos; /* Cursor address */
/* fonts */ /* fonts */
unsigned short vc_hi_font_mask; /* [#] Attribute set for upper 256 chars of font or 0 if not supported */ unsigned short vc_hi_font_mask; /* [#] Attribute set for upper 256 chars of font or 0 if not supported */
struct console_font_op vc_font; /* Current VC font set */ struct console_font_op vc_font; /* Current VC font set */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment