Skip to content

Commit

Permalink
ram: stm32mp1: test: increase minimum size for NoiseBurst test
Browse files Browse the repository at this point in the history
As do_noise_burst use chunk of 128 bytes for load multiple, the lowest
tested size is 128 bytes.

Signed-off-by: Patrick Delaunay <[email protected]>
Change-Id: I79151173b466f2daeda7cdbfaefe7db5bf81c3f7
Reviewed-on: https://gerrit.st.com/c/mpu/oe/st/u-boot/+/167886
  • Loading branch information
patrickdelaunay committed May 29, 2020
1 parent 1c3ae11 commit 33f5ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ram/stm32mp1/stm32mp1_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ static enum test_result test_noise_burst(struct stm32mp1_ddrctl *ctl,
int i;
enum test_result res = TEST_PASSED;

if (get_bufsize(string, argc, argv, 0, &bufsize, 4 * 1024, 8))
if (get_bufsize(string, argc, argv, 0, &bufsize, 4 * 1024, 128))
return TEST_ERROR;
if (get_pattern(string, argc, argv, 1, &pattern, 0xFFFFFFFF))
return TEST_ERROR;
Expand Down

0 comments on commit 33f5ad6

Please sign in to comment.