From 64669acab3cae4541e07939f314f152a11b8dcc9 Mon Sep 17 00:00:00 2001 From: Olivier Martin Date: Mon, 23 Sep 2013 09:39:40 +0000 Subject: [PATCH] LcdGraphicsOutputDxe: Fix BltVideoFill for non-32-bit architectures Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14701 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c index ef85e71250..798f82819f 100644 --- a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c +++ b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c @@ -301,7 +301,7 @@ BltVideoFill ( DestinationAddr = (VOID *)((UINT32 *)FrameBufferBase + DestinationLine * HorizontalResolution + DestinationX); // Fill the entire line - SetMemN( DestinationAddr, WidthInBytes, *((UINT32 *)EfiSourcePixel)); + SetMem32 (DestinationAddr, WidthInBytes, *((UINT32 *)EfiSourcePixel)); } break; -- 2.39.2