From c4068c4001c39e1504b7fb385fc72984ebccd53a Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Mon, 2 Dec 2013 12:48:31 +0100 Subject: [PATCH] FB & omap4: fix mix-up of _fb_height and _fb_width fix #983 --- os/src/drivers/framebuffer/omap4/driver.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os/src/drivers/framebuffer/omap4/driver.h b/os/src/drivers/framebuffer/omap4/driver.h index 83eed41fed..d4e00b479e 100644 --- a/os/src/drivers/framebuffer/omap4/driver.h +++ b/os/src/drivers/framebuffer/omap4/driver.h @@ -209,8 +209,8 @@ bool Framebuffer::Driver::_init_hdmi(Framebuffer::addr_t phys_base) _hdmi.write(Hdmi::Video_cfg::Packing_mode::PACK_24B); - _hdmi.write(_fb_height); - _hdmi.write(_fb_width); + _hdmi.write(_fb_width); + _hdmi.write(_fb_height); _hdmi.write(0); _hdmi.write(0);