mb/google/geralt: Set orientation to LB_FB_ORIENTATION_BOTTOM_UP

Set orientation to LB_FB_ORIENTATION_BOTTOM_UP to align the volume
up/down direction with menu up/down in FW screen.

BUG=b:274749478
TEST=see FW screen in portrait mode.
TEST=volume key behaves as expected

Change-Id: If32859c4bf256c97147622ff04a17fc2ec80303d
Signed-off-by: Yidi Lin <yidilin@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73961
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
diff --git a/src/mainboard/google/geralt/display.c b/src/mainboard/google/geralt/display.c
index 243ed6d..8c7a0c1 100644
--- a/src/mainboard/google/geralt/display.c
+++ b/src/mainboard/google/geralt/display.c
@@ -74,7 +74,7 @@
 	mtk_ddp_mode_set(&edid, panel->disp_path);
 	info = fb_new_framebuffer_info_from_edid(&edid, (uintptr_t)0);
 	if (info)
-		fb_set_orientation(info, LB_FB_ORIENTATION_NORMAL);
+		fb_set_orientation(info, LB_FB_ORIENTATION_BOTTOM_UP);
 
 	return 0;
 }