From 91beb7a46d45005f284b7662563664ef5c193e2f Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sun, 14 Nov 2010 13:03:39 +0000 Subject: Use same loop count for writing and memset'ing in test_mem to have same precision in the result. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28583 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/test_mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plugins/test_mem.c b/apps/plugins/test_mem.c index 7758e35b98..df35893542 100644 --- a/apps/plugins/test_mem.c +++ b/apps/plugins/test_mem.c @@ -206,7 +206,7 @@ enum plugin_status plugin_start(const void* parameter) #if defined(PLUGIN_USE_IRAM) read_test (buf_iram, BUF_SIZE, LOOP_REPEAT_IRAM, line++, "IRAM"); write_test (buf_iram, BUF_SIZE, LOOP_REPEAT_IRAM, line++, "IRAM"); - memset_test(buf_iram, BUF_SIZE, LOOP_REPEAT_DRAM, line++, "IRAM"); + memset_test(buf_iram, BUF_SIZE, LOOP_REPEAT_IRAM, line++, "IRAM"); memcpy_test(buf_iram, BUF_SIZE, LOOP_REPEAT_DRAM, line++, "IRAM"); #endif -- cgit v1.2.3