Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/video/console/
Dfbcon.c1332 static int scrollback_max = 0; variable
1416 scrollback_max += count; in ywrap_up()
1417 if (scrollback_max > scrollback_phys_max) in ywrap_up()
1418 scrollback_max = scrollback_phys_max; in ywrap_up()
1435 scrollback_max -= count; in ywrap_down()
1436 if (scrollback_max < 0) in ywrap_down()
1437 scrollback_max = 0; in ywrap_down()
1459 scrollback_max += count; in ypan_up()
1460 if (scrollback_max > scrollback_phys_max) in ypan_up()
1461 scrollback_max = scrollback_phys_max; in ypan_up()
[all …]