[U-Boot] [PATCH 05/14] cfb_console: Fix function console_scrollup
Marek Vasut
marek.vasut at gmail.com
Wed Jan 25 19:06:51 CET 2012
> * Use correct buffer size, do not damage screen output
What are the symptoms, how does this fix the issue?
Ccing Anatolij, I think he's the right one for this patch. Again, keep the
correct CC!!!
>
> Signed-off-by: Pali Rohár <pali.rohar at gmail.com>
> ---
> Changes since original version:
> - Fixed commit message
>
> drivers/video/cfb_console.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c
> index 904caf7..9092399 100644
> --- a/drivers/video/cfb_console.c
> +++ b/drivers/video/cfb_console.c
> @@ -701,7 +701,7 @@ static void console_scrollup(void)
> );
> #else
> memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
> - CONSOLE_SCROLL_SIZE >> 2);
> + CONSOLE_SCROLL_SIZE);
> #endif
>
> /* clear the last one */
More information about the U-Boot
mailing list