~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/post/board/netta/dsp.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */