diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-11-03 22:03:03 -0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-11-13 10:09:09 +0100 |
commit | cffe815a7656420884e816bb9110ad052889405a (patch) | |
tree | 6994d59368d597ae22d80906bee302d42f308ccb /board/wandboard/wandboard.c | |
parent | ac135f66992f65959fcf8245f2ea8a9109a4a913 (diff) | |
download | u-boot-imx-cffe815a7656420884e816bb9110ad052889405a.zip u-boot-imx-cffe815a7656420884e816bb9110ad052889405a.tar.gz u-boot-imx-cffe815a7656420884e816bb9110ad052889405a.tar.bz2 |
wandboard: Return the error immediately when ipuv3_fb_init() fails
If ipuv3_fb_init() fails, we should return the error immediately.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board/wandboard/wandboard.c')
-rw-r--r-- | board/wandboard/wandboard.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c index 23a78c1..99150f9 100644 --- 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(); |