From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Wed, 25 Jan 2012 19:06:51 +0100 Subject: [U-Boot] [PATCH 05/14] cfb_console: Fix function console_scrollup In-Reply-To: <1327415291-13260-6-git-send-email-pali.rohar@gmail.com> References: <1327415291-13260-1-git-send-email-pali.rohar@gmail.com> <1327415291-13260-6-git-send-email-pali.rohar@gmail.com> Message-ID: <201201251906.51740.marek.vasut@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de > * 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 > --- > 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 */