32 lines
810 B
Diff
32 lines
810 B
Diff
|
--- b/drivers/video/fbdev/core/fbcon.c
|
||
|
+++ a/drivers/video/fbdev/core/fbcon.c
|
||
|
@@ -163,6 +163,8 @@
|
||
|
|
||
|
#define advance_row(p, delta) (unsigned short *)((unsigned long)(p) + (delta) * vc->vc_size_row)
|
||
|
|
||
|
+static int fbcon_set_origin(struct vc_data *);
|
||
|
+
|
||
|
static int fbcon_cursor_noblink;
|
||
|
|
||
|
#define divides(a, b) ((!(a) || (b)%(a)) ? 0 : 1)
|
||
|
@@ -2633,6 +2635,11 @@
|
||
|
}
|
||
|
}
|
||
|
|
||
|
+static int fbcon_set_origin(struct vc_data *vc)
|
||
|
+{
|
||
|
+ return 0;
|
||
|
+}
|
||
|
+
|
||
|
void fbcon_suspended(struct fb_info *info)
|
||
|
{
|
||
|
struct vc_data *vc = NULL;
|
||
|
@@ -3103,6 +3110,7 @@
|
||
|
.con_font_default = fbcon_set_def_font,
|
||
|
.con_font_copy = fbcon_copy_font,
|
||
|
.con_set_palette = fbcon_set_palette,
|
||
|
+ .con_set_origin = fbcon_set_origin,
|
||
|
.con_invert_region = fbcon_invert_region,
|
||
|
.con_screen_pos = fbcon_screen_pos,
|
||
|
.con_getxy = fbcon_getxy,
|