summarylogtreecommitdiffstats
path: root/0302-revert-fbcon-remove-no-op-fbcon_set_origin.patch
diff options
context:
space:
mode:
authorJeka2023-06-27 19:47:18 +0300
committerJeka2023-06-27 19:47:18 +0300
commitfb679befae679f6b3235a56e5929582a73b49981 (patch)
tree8919cbe496f162fade1c0dd0653cba182f71dd75 /0302-revert-fbcon-remove-no-op-fbcon_set_origin.patch
parent5044b4b52b055721532303f99530dfc38796bc6a (diff)
downloadaur-fb679befae679f6b3235a56e5929582a73b49981.tar.gz
kernel release 6.4
Diffstat (limited to '0302-revert-fbcon-remove-no-op-fbcon_set_origin.patch')
-rw-r--r--0302-revert-fbcon-remove-no-op-fbcon_set_origin.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/0302-revert-fbcon-remove-no-op-fbcon_set_origin.patch b/0302-revert-fbcon-remove-no-op-fbcon_set_origin.patch
deleted file mode 100644
index 6491c541e883..000000000000
--- a/0302-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,