diff options
author | Wolfgang Denk <wd@denx.de> | 2010-04-27 23:02:12 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-04-27 23:02:12 +0200 |
commit | 8e98f5f70b269a77416a990b90ad8d853c5a0d73 (patch) | |
tree | ee7332a16533f59cdc111bdf8796179333aaede9 /post/tests.c | |
parent | c303176aa0cf8c5fc38e7c2d5e181e89cca72ef6 (diff) | |
parent | 29fd7ceb3c1cb7ffaffce1047e806d1e85e3ab4b (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-mpc5xxx
Diffstat (limited to 'post/tests.c')
-rw-r--r-- | post/tests.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/post/tests.c b/post/tests.c index 3224f009a67..a4066f9f8b7 100644 --- a/post/tests.c +++ b/post/tests.c @@ -53,6 +53,7 @@ extern int gdc_post_test (int flags); extern int fpga_post_test (int flags); extern int lwmon5_watchdog_post_test(int flags); extern int sysmon1_post_test(int flags); +extern int coprocessor_post_test(int flags); extern int sysmon_init_f (void); @@ -286,6 +287,18 @@ struct post_test post_list[] = #if CONFIG_POST & CONFIG_SYS_POST_BSPEC5 CONFIG_POST_BSPEC5, #endif +#if CONFIG_POST & CONFIG_SYS_POST_COPROC + { + "Coprocessors communication test", + "coproc_com", + "This test checks communication with coprocessors.", + POST_RAM | POST_ALWAYS | POST_CRITICAL, + &coprocessor_post_test, + NULL, + NULL, + CONFIG_SYS_POST_COPROC + } +#endif }; unsigned int post_list_size = sizeof (post_list) / sizeof (struct post_test); |