On 26/06/14 23:15, Przemyslaw Marczak wrote: > This change adds declaration of functions: > - set_board_type() - called at checkboard() > - get_board_type() - called at checkboard() > - get_board_name() > > For supporting multiple board types in a one config - it is welcome > to display the current board model. This is what get_board_type() > should return. > > Signed-off-by: Przemyslaw Marczak <p.marc...@samsung.com> > Cc: Piotr Wilczek <p.wilc...@samsung.com> > Cc: Minkyu Kang <mk7.k...@samsung.com> > > --- > Changes v3: > - change the commit order > - include/samsung/misc.h: add new functions declaration > - update a commit message > --- > board/samsung/common/board.c | 7 +++++++ > include/samsung/misc.h | 5 +++++ > 2 files changed, 12 insertions(+) > > diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c > index fd5f21f..f2dbfa0 100644 > --- a/board/samsung/common/board.c > +++ b/board/samsung/common/board.c > @@ -96,6 +96,7 @@ int board_init(void) > #ifdef CONFIG_EXYNOS_SPI > spi_init(); > #endif > + > return exynos_init(); > } > > @@ -285,7 +286,13 @@ int checkboard(void) > > board_name = fdt_getprop(gd->fdt_blob, 0, "model", NULL); > printf("Board: %s\n", board_name ? board_name : "unknown"); > +#ifdef CONFIG_BOARD_TYPES > + set_board_type(); > + > + const char *board_type = get_board_type();
please don't declare local variable at middle of function. > > + printf("Model: %s\n", board_type ? board_type : "unknown"); > +#endif > return 0; > } > #endif > diff --git a/include/samsung/misc.h b/include/samsung/misc.h > index c3fcc29..fcec5ea 100644 > --- a/include/samsung/misc.h > +++ b/include/samsung/misc.h > @@ -40,5 +40,10 @@ char *get_dfu_alt_system(void); > char *get_dfu_alt_boot(void); > void set_dfu_alt_info(void); > #endif > +#ifdef CONFIG_BOARD_TYPES > +void set_board_type(void); > +const char *get_board_type(void); > +const char *get_board_name(void); > +#endif > > #endif /* __SAMSUNG_MISC_COMMON_H__ */ > _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot