Ronald G. Minnich (rminnich@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3111
-gerrit
commit 2ca12d2e5ef0c49263abebed37723ae0e9d3f01a Author: Ronald G. Minnich rminnich@gmail.com Date: Thu Apr 18 16:10:29 2013 -0700
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 --- src/cpu/samsung/exynos5250/cpu.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/cpu/samsung/exynos5250/cpu.c b/src/cpu/samsung/exynos5250/cpu.c index ee33cf3..09b670e 100644 --- a/src/cpu/samsung/exynos5250/cpu.c +++ b/src/cpu/samsung/exynos5250/cpu.c @@ -51,6 +51,8 @@ static void exynos_displayport_init(device_t dev) panel.left_margin = conf->left_margin; panel.right_margin = conf->right_margin; panel.hsync = conf->hsync; + panel.xres = conf->xres; + panel.yres = conf->yres;
vi.vl_col = conf->xres; vi.vl_row = conf->yres;