common: env_sf: Add exclamation mark
[oweals/u-boot.git] / post / board / netta / codec.c
1 /*
2  * (C) Copyright 2004
3  * Pantelis Antoniou, Intracom S.A. , panto@intracom.gr
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
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
18 #include <post.h>
19
20 #if CONFIG_POST & CONFIG_SYS_POST_CODEC
21
22 extern int board_post_codec(int flags);
23
24 int codec_post_test (int flags)
25 {
26         return board_post_codec(flags);
27 }
28
29 #endif /* CONFIG_POST & CONFIG_SYS_POST_CODEC */