@@ -1612,8 +1612,7 @@ static void fbcon_redraw_blit(struct vc_data *vc, struct fb_info *info,
1612
1612
}
1613
1613
}
1614
1614
1615
- static void fbcon_redraw (struct vc_data * vc , struct fbcon_display * p ,
1616
- int line , int count , int offset )
1615
+ static void fbcon_redraw (struct vc_data * vc , int line , int count , int offset )
1617
1616
{
1618
1617
unsigned short * d = (unsigned short * )
1619
1618
(vc -> vc_origin + vc -> vc_size_row * line );
@@ -1827,7 +1826,7 @@ static bool fbcon_scroll(struct vc_data *vc, unsigned int t, unsigned int b,
1827
1826
1828
1827
case SCROLL_REDRAW :
1829
1828
redraw_up :
1830
- fbcon_redraw (vc , p , t , b - t - count ,
1829
+ fbcon_redraw (vc , t , b - t - count ,
1831
1830
count * vc -> vc_cols );
1832
1831
fbcon_clear (vc , b - count , 0 , count , vc -> vc_cols );
1833
1832
scr_memsetw ((unsigned short * ) (vc -> vc_origin +
@@ -1913,7 +1912,7 @@ static bool fbcon_scroll(struct vc_data *vc, unsigned int t, unsigned int b,
1913
1912
1914
1913
case SCROLL_REDRAW :
1915
1914
redraw_down :
1916
- fbcon_redraw (vc , p , b - 1 , b - t - count ,
1915
+ fbcon_redraw (vc , b - 1 , b - t - count ,
1917
1916
- count * vc -> vc_cols );
1918
1917
fbcon_clear (vc , t , 0 , count , vc -> vc_cols );
1919
1918
scr_memsetw ((unsigned short * ) (vc -> vc_origin +
0 commit comments