summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/console_struct.h2
-rw-r--r--include/linux/kd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/console_struct.h b/include/linux/console_struct.h
index df81e37a9884..a9a2a486234c 100644
--- a/include/linux/console_struct.h
+++ b/include/linux/console_struct.h
@@ -40,7 +40,7 @@ struct vc_data {
unsigned long vc_pos; /* Cursor address */
/* fonts */
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 vc_font; /* Current VC font set */
unsigned short vc_video_erase_char; /* Background erase character */
/* VT terminal data */
unsigned int vc_state; /* Escape sequence parser state */
diff --git a/include/linux/kd.h b/include/linux/kd.h
index 834885b8da63..28be4fbe9044 100644
--- a/include/linux/kd.h
+++ b/include/linux/kd.h
@@ -149,7 +149,7 @@ struct console_font_op {
unsigned int flags; /* KD_FONT_FLAG_* */
unsigned int width, height; /* font size */
unsigned int charcount;
- unsigned char *data; /* font data with height fixed to 32 */
+ unsigned char __user *data; /* font data with height fixed to 32 */
};
struct console_font {