]> git.ipfire.org Git - people/ms/u-boot.git/blame - post/board/netta/dsp.c
arc: minor fixes in Kconfig
[people/ms/u-boot.git] / post / board / netta / dsp.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 * 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
ad5bb451
WD
18#include <post.h>
19
6d0f6bcf 20#if CONFIG_POST & CONFIG_SYS_POST_DSP
ad5bb451
WD
21
22extern int board_post_dsp(int flags);
23
24int dsp_post_test (int flags)
25{
26 return board_post_dsp(flags);
27}
28
6d0f6bcf 29#endif /* CONFIG_POST & CONFIG_SYS_POST_DSP */