]> git.ipfire.org Git - people/ms/u-boot.git/blame - post/board/netta/codec.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / post / board / netta / codec.c
CommitLineData
ad5bb451
WD
1/*
2 * (C) Copyright 2004
3 * Pantelis Antoniou, Intracom S.A. , panto@intracom.gr
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
ad5bb451
WD
6 */
7
8#include <common.h>
9
10/*
11 * CODEC test
12 *
13 * This test verifies the connection and performs a memory test
14 * on any connected codec(s). The meat of the work is done
15 * in the board specific function.
16 */
17
ad5bb451
WD
18#include <post.h>
19
6d0f6bcf 20#if CONFIG_POST & CONFIG_SYS_POST_CODEC
ad5bb451
WD
21
22extern int board_post_codec(int flags);
23
24int codec_post_test (int flags)
25{
26 return board_post_codec(flags);
27}
28
6d0f6bcf 29#endif /* CONFIG_POST & CONFIG_SYS_POST_CODEC */