drivers/gop: Remove unnecessary pitch calculation cast
diff --git a/common/drivers/gop.c b/common/drivers/gop.c
index acbf6399..887fb188 100644
--- a/common/drivers/gop.c
+++ b/common/drivers/gop.c
@@ -98,7 +98,7 @@ static bool mode_to_fb_info(struct fb_info *ret, EFI_GRAPHICS_OUTPUT_PROTOCOL *g
}
ret->memory_model = 0x06;
- ret->framebuffer_pitch = (uint64_t)mode_info->PixelsPerScanLine * (ret->framebuffer_bpp / 8);
+ ret->framebuffer_pitch = mode_info->PixelsPerScanLine * (ret->framebuffer_bpp / 8);
ret->framebuffer_width = mode_info->HorizontalResolution;
ret->framebuffer_height = mode_info->VerticalResolution;
