Home
last modified time | relevance | path

Searched refs:scrollback_max (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/drivers/video/console/
Dfbcon.c1337 static int scrollback_max = 0; variable
1421 scrollback_max += count; in ywrap_up()
1422 if (scrollback_max > scrollback_phys_max) in ywrap_up()
1423 scrollback_max = scrollback_phys_max; in ywrap_up()
1440 scrollback_max -= count; in ywrap_down()
1441 if (scrollback_max < 0) in ywrap_down()
1442 scrollback_max = 0; in ywrap_down()
1464 scrollback_max += count; in ypan_up()
1465 if (scrollback_max > scrollback_phys_max) in ypan_up()
1466 scrollback_max = scrollback_phys_max; in ypan_up()
[all …]