aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2013-04-18 16:10:29 -0700
committerRonald G. Minnich <rminnich@gmail.com>2013-04-19 17:41:17 +0200
commitd83c117e86acf21f179495f7a607f9a2fd9349a2 (patch)
tree6d89f38f3a3c7a3009ae5ca773410a267bd4726c /src
parent34240b06d8c5d6cc9068279e627ac4d1ebca625b (diff)
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)
Diffstat (limited to 'src')
-rw-r--r--src/cpu/samsung/exynos5250/cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/samsung/exynos5250/cpu.c b/src/cpu/samsung/exynos5250/cpu.c
index ee33cf362c..09b670e9d8 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;