projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e139a9
)
fbcon: Remove the superfluous break
author
Jing Xiangfeng
<jingxiangfeng@huawei.com>
Fri, 18 Sep 2020 01:05:21 +0000
(09:05 +0800)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Fri, 18 Sep 2020 12:45:44 +0000
(14:45 +0200)
Remove the superfluous break, as there is a 'return' before it.
Fixes:
bad07ff74c32
("fbcon: smart blitter usage for scrolling")
Signed-off-by: Jing Xiangfeng <jingxiangfeng@huawei.com>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link:
https://patchwork.freedesktop.org/patch/msgid/20200918010521.69950-1-jingxiangfeng@huawei.com
drivers/video/fbdev/core/fbcon.c
patch
|
blob
|
history
diff --git
a/drivers/video/fbdev/core/fbcon.c
b/drivers/video/fbdev/core/fbcon.c
index
6616783
..
ae4de3b
100644
(file)
--- a/
drivers/video/fbdev/core/fbcon.c
+++ b/
drivers/video/fbdev/core/fbcon.c
@@
-1912,7
+1912,6
@@
static bool fbcon_scroll(struct vc_data *vc, unsigned int t, unsigned int b,
vc->vc_video_erase_char,
vc->vc_size_row * count);
return true;
- break;
case SCROLL_WRAP_MOVE:
if (b - t - count > 3 * vc->vc_rows >> 2) {
@@
-2003,7
+2002,6
@@
static bool fbcon_scroll(struct vc_data *vc, unsigned int t, unsigned int b,
vc->vc_video_erase_char,
vc->vc_size_row * count);
return true;
- break;
case SCROLL_WRAP_MOVE:
if (b - t - count > 3 * vc->vc_rows >> 2) {