exynos5250: get xres and yres out of the device tree and into the panel descriptor

We neglected to copy xres and yres out; now we do.

Change-Id: Icc4a8eb35799d156b11274f71bcfb4a1d10e01e3
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-on: http://review.coreboot.org/3111
Reviewed-by: David Hendricks <dhendrix@chromium.org>
Tested-by: build bot (Jenkins)
This commit is contained in:
Ronald G. Minnich 2013-04-18 16:10:29 -07:00
parent 34240b06d8
commit d83c117e86
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,8 @@ static void exynos_displayport_init(device_t dev)
panel.left_margin = conf->left_margin; panel.left_margin = conf->left_margin;
panel.right_margin = conf->right_margin; panel.right_margin = conf->right_margin;
panel.hsync = conf->hsync; panel.hsync = conf->hsync;
panel.xres = conf->xres;
panel.yres = conf->yres;
vi.vl_col = conf->xres; vi.vl_col = conf->xres;
vi.vl_row = conf->yres; vi.vl_row = conf->yres;