diff options
author | Robert Winkler | 2013-06-13 11:32:22 -0700 |
---|---|---|
committer | Stefano Babic | 2013-09-10 19:28:18 +0200 |
commit | 47ac53d7aee90ec46f7a5b4e10e62114e60b1976 (patch) | |
tree | 25b5f9bc5e2dca8acbb33dd4a413e281d305790b | |
parent | 607232e42a46503ba3be1c458dcd8597cbf7a753 (diff) |
imx: nitrogen6x/mx6qsabrelite: Fix bug in board_video_skip
Signed-off-by: Robert Winkler <robert.winkler@boundarydevices.com>
-rw-r--r-- | board/boundary/nitrogen6x/nitrogen6x.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/boundary/nitrogen6x/nitrogen6x.c b/board/boundary/nitrogen6x/nitrogen6x.c index f664f6de6b3..2b61e5d2a9b 100644 --- a/board/boundary/nitrogen6x/nitrogen6x.c +++ b/board/boundary/nitrogen6x/nitrogen6x.c @@ -593,6 +593,7 @@ int board_video_skip(void) if (!panel) { panel = displays[0].mode.name; printf("No panel detected: default to %s\n", panel); + i = 0; } } else { for (i = 0; i < ARRAY_SIZE(displays); i++) { @@ -609,9 +610,10 @@ int board_video_skip(void) displays[i].mode.name, displays[i].mode.xres, displays[i].mode.yres); - } else + } else { printf("LCD %s cannot be configured: %d\n", displays[i].mode.name, ret); + } } else { printf("unsupported panel %s\n", panel); ret = -EINVAL; |