projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac135f6
)
wandboard: Return the error immediately when ipuv3_fb_init() fails
author
Fabio Estevam
<fabio.estevam@freescale.com>
Mon, 4 Nov 2013 00:03:03 +0000
(22:03 -0200)
committer
Stefano Babic
<sbabic@denx.de>
Wed, 13 Nov 2013 09:09:09 +0000
(10:09 +0100)
If ipuv3_fb_init() fails, we should return the error immediately.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
board/wandboard/wandboard.c
patch
|
blob
|
history
diff --git
a/board/wandboard/wandboard.c
b/board/wandboard/wandboard.c
index 23a78c1663852ed46774762b2c38699a4a49f6e7..99150f9b895e99331df91b0ddc9f193c00e0896c 100644
(file)
--- a/
board/wandboard/wandboard.c
+++ b/
board/wandboard/wandboard.c
@@
-230,8
+230,10
@@
int board_video_skip(void)
ret = ipuv3_fb_init(&hdmi, 0, IPU_PIX_FMT_RGB24);
- if (ret)
+ if (ret)
{
printf("HDMI cannot be configured: %d\n", ret);
+ return ret;
+ }
imx_enable_hdmi_phy();