]> git.ipfire.org Git - people/ms/u-boot.git/blob - post/board/netta/dsp.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / post / board / netta / dsp.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 * DSP test
12 *
13 * This test verifies the connection and performs a memory test
14 * on any connected DSP(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_DSP
21
22 extern int board_post_dsp(int flags);
23
24 int dsp_post_test (int flags)
25 {
26 return board_post_dsp(flags);
27 }
28
29 #endif /* CONFIG_POST & CONFIG_SYS_POST_DSP */