From 0a70e1d516d869e54d6fe5c19064d3401b35911c Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Mon, 5 Dec 2016 17:52:01 +0100 Subject: toradex: fix placeholder function signature Signed-off-by: Max Krummenacher Acked-by: Marcel Ziswiler --- board/toradex/common/tdx-common.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/board/toradex/common/tdx-common.c b/board/toradex/common/tdx-common.c index 2c6fc409c1..d383ac7b8c 100644 --- a/board/toradex/common/tdx-common.c +++ b/board/toradex/common/tdx-common.c @@ -152,9 +152,10 @@ u32 get_board_rev(void) #endif /* CONFIG_REVISION_TAG */ #ifdef CONFIG_SERIAL_TAG -u32 get_board_serial(void) +void get_board_serial(struct tag_serialnr *serialnr) { - return 0; + serialnr->low = 0; + serialnr->high = 0; } #endif /* CONFIG_SERIAL_TAG */ -- cgit v1.2.3