diff options
| author | Simon Glass <[email protected]> | 2016-10-17 20:12:57 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-10-23 18:33:57 -0400 |
| commit | b87ca80b9b1825b44341aa4bcd28c26a7860fd18 (patch) | |
| tree | 14eb9efa2f0a84f55b1960363e2d326f75d917e8 /drivers | |
| parent | 5ecf8c66189978e096e27953ab31990e31b7f968 (diff) | |
Convert CONFIG_CONSOLE_SCROLL_LINES to Kconfig
This converts the following to Kconfig:
CONFIG_CONSOLE_SCROLL_LINES
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index fa9f9fa48b5..577e6d7b39b 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -523,6 +523,16 @@ config CONSOLE_EXTRA_INFO each line of the display. The function should return the string, which can be empty if there is nothing to display for that line. +config CONSOLE_SCROLL_LINES + int "Number of lines to scroll the console by" + depends on CFB_CONSOLE || DM_VIDEO || LCD + default 1 + help + When the console need to be scrolled, this is the number of + lines to scroll by. It defaults to 1. Increasing this makes the + console jump but can help speed up operation when scrolling + is slow. + config VIDEO_CT69000 bool "Enable Chips & Technologies 69000 video driver" depends on VIDEO |
