summarylogtreecommitdiffstats
path: root/0303-revert-fbcon-remove-no-op-fbcon_set_origin.patch
diff options
context:
space:
mode:
authorEvgeny Myandin2022-02-09 17:50:17 +0300
committerEvgeny Myandin2022-02-09 17:50:17 +0300
commit48ad422ede5513e078e9872247193a62766f8f4e (patch)
tree366e30bfcf710c28d21f2b51ff7a7018788234ca /0303-revert-fbcon-remove-no-op-fbcon_set_origin.patch
parent07fe1ab049a244eee2f1b5a13afecce8e44bad44 (diff)
downloadaur-48ad422ede5513e078e9872247193a62766f8f4e.tar.gz
kernel release 5.16.8
Diffstat (limited to '0303-revert-fbcon-remove-no-op-fbcon_set_origin.patch')
-rw-r--r--0303-revert-fbcon-remove-no-op-fbcon_set_origin.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/0303-revert-fbcon-remove-no-op-fbcon_set_origin.patch b/0303-revert-fbcon-remove-no-op-fbcon_set_origin.patch
deleted file mode 100644
index 6491c541e883..000000000000
--- a/0303-revert-fbcon-remove-no-op-fbcon_set_origin.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- 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,