summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2016-12-05 17:52:01 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2017-01-11 21:27:16 +0100
commit0a70e1d516d869e54d6fe5c19064d3401b35911c (patch)
treea4331a026cfa3557fb14024f6c5617b516c3dd17 /board
parent1104fa367a60674a35834a1e55353ba0926b2bee (diff)
toradex: fix placeholder function signature
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'board')
-rw-r--r--board/toradex/common/tdx-common.c5
1 files 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 */