blob: 7ff890a9cb82694b871cfb6c463e915c2d6ba440 [file] [log] [blame]
Wolfgang Denkad5bb452007-03-06 18:08:43 +01001/*
2 * (C) Copyright 2004
3 * Pantelis Antoniou, Intracom S.A. , panto@intracom.gr
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Denkad5bb452007-03-06 18:08:43 +01006 */
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
Wolfgang Denkad5bb452007-03-06 18:08:43 +010018#include <post.h>
19
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020020#if CONFIG_POST & CONFIG_SYS_POST_CODEC
Wolfgang Denkad5bb452007-03-06 18:08:43 +010021
22extern int board_post_codec(int flags);
23
24int codec_post_test (int flags)
25{
26 return board_post_codec(flags);
27}
28
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029#endif /* CONFIG_POST & CONFIG_SYS_POST_CODEC */