projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6855a3a
)
[PATCH] fbcon: fix scrollback with logo issue immediately after boot
author
David Hollister
<
[email protected]
>
Wed, 31 May 2006 04:25:36 +0000
(21:25 -0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 31 May 2006 23:27:10 +0000
(16:27 -0700)
From: David Hollister <
[email protected]
>
After the system boots with the logo, if the first action is a scrollback, the
screen may become garbled. This patch ensures that the softback_curr value is
updated along with softback_in following the scrollback.
Signed-off-by: David Hollister <
[email protected]
>
Signed-off-by: Jordan Crouse <
[email protected]
>
Cc: "Antonino A. Daplas" <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/console/fbcon.c
patch
|
blob
|
history
diff --git
a/drivers/video/console/fbcon.c
b/drivers/video/console/fbcon.c
index ca020719d20b14959b3d1daa31d4e1c91742df2e..953eb8c171d6233acdd1df9e8927cdaa25d5cc14 100644
(file)
--- a/
drivers/video/console/fbcon.c
+++ b/
drivers/video/console/fbcon.c
@@
-2631,7
+2631,7
@@
static int fbcon_scrolldelta(struct vc_data *vc, int lines)
scr_memcpyw((u16 *) q, (u16 *) p,
vc->vc_size_row);
}
- softback_in = p;
+ softback_in =
softback_curr =
p;
update_region(vc, vc->vc_origin,
logo_lines * vc->vc_cols);
}