X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=post%2Ftests.c;h=bce53302e68474846b14fb76e2965ecf5c4cf92d;hb=5a8c51cd5ef87195e05cdd9aaf2f1dcc753c9792;hp=02506c0790163a609fd1f468405b8b1c3e41498b;hpb=04a85b3b36fdbaaac5fa95d61f59f481bbcf7520;p=u-boot diff --git a/post/tests.c b/post/tests.c index 02506c0790..bce53302e6 100644 --- a/post/tests.c +++ b/post/tests.c @@ -43,6 +43,7 @@ extern int spi_post_test (int flags); extern int usb_post_test (int flags); extern int spr_post_test (int flags); extern int sysmon_post_test (int flags); +extern int dsp_post_test (int flags); extern int sysmon_init_f (void); @@ -196,6 +197,18 @@ struct post_test post_list[] = CFG_POST_SYSMON }, #endif +#if CONFIG_POST & CFG_POST_DSP + { + "DSP test", + "dsp", + "This test checks any connected DSP(s).", + POST_RAM | POST_MANUAL, + &dsp_post_test, + NULL, + NULL, + CFG_POST_DSP + }, +#endif }; unsigned int post_list_size = sizeof (post_list) / sizeof (struct post_test);