diff options
| author | Stefan Roese <sr@denx.de> | 2007-08-15 21:06:27 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-08-15 21:06:27 +0200 | 
| commit | b706d63559aeec352bc72dd86d7d5423c15f6a60 (patch) | |
| tree | fdeda4d61970fef239d9d66ecd851fa46cfe5ec0 /post/tests.c | |
| parent | c8603cfbd4573379a6076c9c208545ba2bbf019a (diff) | |
| parent | 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7 (diff) | |
| download | olio-uboot-2014.01-b706d63559aeec352bc72dd86d7d5423c15f6a60.tar.xz olio-uboot-2014.01-b706d63559aeec352bc72dd86d7d5423c15f6a60.zip | |
Merge with git://www.denx.de/git/u-boot.git
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 f3604b249..e1c3d28f5 100644 --- a/post/tests.c +++ b/post/tests.c @@ -46,6 +46,7 @@ extern int spr_post_test (int flags);  extern int sysmon_post_test (int flags);  extern int dsp_post_test (int flags);  extern int codec_post_test (int flags); +extern int ecc_post_test (int flags);  extern int sysmon_init_f (void); @@ -236,6 +237,18 @@ struct post_test post_list[] =  	CFG_POST_CODEC      },  #endif +#if CONFIG_POST & CFG_POST_ECC +    { +	"ECC test", +	"ecc", +	"This test checks ECC facility of memory.", +	POST_ROM | POST_ALWAYS, +	&ecc_post_test, +	NULL, +	NULL, +	CFG_POST_ECC +    }, +#endif  };  unsigned int post_list_size = sizeof (post_list) / sizeof (struct post_test); |