summaryrefslogtreecommitdiff
path: root/test/pingpong.tasklist
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-12-17 13:43:17 -0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-12-19 00:12:28 +0000
commit6ab8e91658f1efc894b648cc0748af8d804915e4 (patch)
treec33da7914793452ecb37084e505230171d4eff9e /test/pingpong.tasklist
parente5935f17d1798a1f19c6003e57f140446774484f (diff)
downloadchrome-ec-6ab8e91658f1efc894b648cc0748af8d804915e4.tar.gz
cleanup: Remove checkpatch warnings
This make minor syntactic changes and renames some camel-cased symbols to keep checkpatch from complaining. The goal is to reduce the temptation to use 'repo upload --no-verify'. This is a big furball of find/replace, but no functional changes. BUG=chromium:322144 BRANCH=none TEST=build all boards; pass unit tests Change-Id: I0269b7dd95836ef9a6e33f88c003ab0f24f842a0 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/180495
Diffstat (limited to 'test/pingpong.tasklist')
-rw-r--r--test/pingpong.tasklist8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/pingpong.tasklist b/test/pingpong.tasklist
index 1dd8aa3b91..84cf7b11d4 100644
--- a/test/pingpong.tasklist
+++ b/test/pingpong.tasklist
@@ -15,7 +15,7 @@
* 's' is the stack size in bytes; must be a multiple of 8
*/
#define CONFIG_TEST_TASK_LIST \
- TASK_TEST(TESTA, TaskAbc, NULL, TASK_STACK_SIZE) \
- TASK_TEST(TESTB, TaskAbc, NULL, TASK_STACK_SIZE) \
- TASK_TEST(TESTC, TaskAbc, NULL, TASK_STACK_SIZE) \
- TASK_TEST(TICK, TaskTick, NULL, 256)
+ TASK_TEST(TESTA, task_abc, NULL, TASK_STACK_SIZE) \
+ TASK_TEST(TESTB, task_abc, NULL, TASK_STACK_SIZE) \
+ TASK_TEST(TESTC, task_abc, NULL, TASK_STACK_SIZE) \
+ TASK_TEST(TICK, task_tick, NULL, 256)