Browse Source

board_r: Add missing return to initr_doc

I happened to spot this while working in the area.

Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
Acked-by: Simon Glass <sjg@chromium.org>
Cc: Simon Glass <sjg@chromium.org>
Ian Campbell 10 years ago
parent
commit
19ad527d8c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      common/board_r.c

+ 1 - 0
common/board_r.c

@@ -587,6 +587,7 @@ static int initr_doc(void)
 {
 	puts("DOC:   ");
 	doc_init();
+	return 0;
 }
 #endif