summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaisuke Nojiri <dnojiri@chromium.org>2019-04-03 11:03:23 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-04-08 22:30:32 -0700
commit6bd030ecd978a8b619da261510490f27f68c4e6c (patch)
tree4cd5827d1842384d477eb7f9d68c05ec7906c2ec /test
parentb4cca02d9dcc5c7fa42813ae819933fd5ae9f43c (diff)
downloadchrome-ec-6bd030ecd978a8b619da261510490f27f68c4e6c.tar.gz
ec.tasklist: Consolidate duplicate comments
It's simply a bad idea to describe a macro in multiple locations. It'll make it hard to change. It'll be difficult to keep all locations in sync. This patch replaces the comment duplicated in all ec.tasklist with a pointer to the CONFIG_TASK_LIST definition. The macro will be described in a single place (just like all/most other macros). Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> BUG=none BRANCH=none TEST=buildall Change-Id: Id658b9d68e742e4334c692b804d9c98c8de21313 Reviewed-on: https://chromium-review.googlesource.com/1551579 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Tested-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/aes.tasklist10
-rw-r--r--test/base32.tasklist10
-rw-r--r--test/battery_get_params_smart.tasklist10
-rw-r--r--test/bklight_lid.tasklist10
-rw-r--r--test/bklight_passthru.tasklist10
-rw-r--r--test/button.tasklist10
-rw-r--r--test/cec.tasklist10
-rw-r--r--test/charge_manager.tasklist10
-rw-r--r--test/charge_manager_drp_charging.tasklist10
-rw-r--r--test/charge_ramp.tasklist10
-rw-r--r--test/console_edit.tasklist10
-rw-r--r--test/crc32.tasklist10
-rw-r--r--test/entropy.tasklist10
-rw-r--r--test/extpwr_gpio.tasklist10
-rw-r--r--test/fan.tasklist10
-rw-r--r--test/flash.tasklist10
-rw-r--r--test/flash_log.tasklist10
-rw-r--r--test/float.tasklist10
-rw-r--r--test/fp.tasklist10
-rw-r--r--test/hooks.tasklist10
-rw-r--r--test/host_command.tasklist10
-rw-r--r--test/inductive_charging.tasklist10
-rw-r--r--test/interrupt.tasklist10
-rw-r--r--test/kb_8042.tasklist10
-rw-r--r--test/kb_mkbp.tasklist10
-rw-r--r--test/kb_scan.tasklist10
-rw-r--r--test/lid_sw.tasklist10
-rw-r--r--test/lightbar.tasklist10
-rw-r--r--test/math_util.tasklist10
-rw-r--r--test/motion_angle.tasklist10
-rw-r--r--test/motion_angle_tablet.tasklist10
-rw-r--r--test/motion_lid.tasklist10
-rw-r--r--test/mutex.tasklist10
-rw-r--r--test/nvmem.tasklist10
-rw-r--r--test/pingpong.tasklist10
-rw-r--r--test/pinweaver.tasklist10
-rw-r--r--test/power_button.tasklist10
-rw-r--r--test/powerdemo.tasklist10
-rw-r--r--test/queue.tasklist10
-rw-r--r--test/rma_auth.tasklist10
-rw-r--r--test/rsa.tasklist10
-rw-r--r--test/rtc.tasklist10
-rw-r--r--test/sbs_charging_v2.tasklist10
-rw-r--r--test/sha256.tasklist10
-rw-r--r--test/shmalloc.tasklist10
-rw-r--r--test/stress.tasklist10
-rw-r--r--test/system.tasklist10
-rw-r--r--test/thermal.tasklist10
-rw-r--r--test/timer_calib.tasklist10
-rw-r--r--test/timer_dos.tasklist10
-rw-r--r--test/timer_jump.tasklist10
-rw-r--r--test/usb_pd.tasklist10
-rw-r--r--test/utils.tasklist10
-rw-r--r--test/utils_str.tasklist10
-rw-r--r--test/vboot.tasklist10
-rw-r--r--test/x25519.tasklist10
56 files changed, 56 insertions, 504 deletions
diff --git a/test/aes.tasklist b/test/aes.tasklist
index de4df33e13..24870f2abb 100644
--- a/test/aes.tasklist
+++ b/test/aes.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/base32.tasklist b/test/base32.tasklist
index e241aab4bb..7150f17cbd 100644
--- a/test/base32.tasklist
+++ b/test/base32.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/battery_get_params_smart.tasklist b/test/battery_get_params_smart.tasklist
index c5d4a2a4b3..db3f5b4fdc 100644
--- a/test/battery_get_params_smart.tasklist
+++ b/test/battery_get_params_smart.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/bklight_lid.tasklist b/test/bklight_lid.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/bklight_lid.tasklist
+++ b/test/bklight_lid.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/bklight_passthru.tasklist b/test/bklight_passthru.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/bklight_passthru.tasklist
+++ b/test/bklight_passthru.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/button.tasklist b/test/button.tasklist
index 65314cd0b8..44532203c8 100644
--- a/test/button.tasklist
+++ b/test/button.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE)
diff --git a/test/cec.tasklist b/test/cec.tasklist
index 7015e106a9..e7634958a9 100644
--- a/test/cec.tasklist
+++ b/test/cec.tasklist
@@ -6,14 +6,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/charge_manager.tasklist b/test/charge_manager.tasklist
index 927bd24ee1..1f6f139a63 100644
--- a/test/charge_manager.tasklist
+++ b/test/charge_manager.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/charge_manager_drp_charging.tasklist b/test/charge_manager_drp_charging.tasklist
index cbe6830516..e39c934e44 100644
--- a/test/charge_manager_drp_charging.tasklist
+++ b/test/charge_manager_drp_charging.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/charge_ramp.tasklist b/test/charge_ramp.tasklist
index 97a94fef6c..1e18846c75 100644
--- a/test/charge_ramp.tasklist
+++ b/test/charge_ramp.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(CHG_RAMP, chg_ramp_task, NULL, SMALLER_TASK_STACK_SIZE)
diff --git a/test/console_edit.tasklist b/test/console_edit.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/console_edit.tasklist
+++ b/test/console_edit.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/crc32.tasklist b/test/crc32.tasklist
index 30e5f7fc22..f46a2eaa1d 100644
--- a/test/crc32.tasklist
+++ b/test/crc32.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/entropy.tasklist b/test/entropy.tasklist
index e76178ba0a..80072bb620 100644
--- a/test/entropy.tasklist
+++ b/test/entropy.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/extpwr_gpio.tasklist b/test/extpwr_gpio.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/extpwr_gpio.tasklist
+++ b/test/extpwr_gpio.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/fan.tasklist b/test/fan.tasklist
index c72de237cd..213ae1b2bb 100644
--- a/test/fan.tasklist
+++ b/test/fan.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/flash.tasklist b/test/flash.tasklist
index ce012123d9..7a39a5865d 100644
--- a/test/flash.tasklist
+++ b/test/flash.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(TEST, task_test, NULL, TASK_STACK_SIZE)
diff --git a/test/flash_log.tasklist b/test/flash_log.tasklist
index 503898de80..9fc1a80f4d 100644
--- a/test/flash_log.tasklist
+++ b/test/flash_log.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/float.tasklist b/test/float.tasklist
index 5e26d7102e..9ad0114d8a 100644
--- a/test/float.tasklist
+++ b/test/float.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/fp.tasklist b/test/fp.tasklist
index 5e26d7102e..9ad0114d8a 100644
--- a/test/fp.tasklist
+++ b/test/fp.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/hooks.tasklist b/test/hooks.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/hooks.tasklist
+++ b/test/hooks.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/host_command.tasklist b/test/host_command.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/host_command.tasklist
+++ b/test/host_command.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/inductive_charging.tasklist b/test/inductive_charging.tasklist
index 7077d82e38..f5c894ccaf 100644
--- a/test/inductive_charging.tasklist
+++ b/test/inductive_charging.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/interrupt.tasklist b/test/interrupt.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/interrupt.tasklist
+++ b/test/interrupt.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/kb_8042.tasklist b/test/kb_8042.tasklist
index 7f87e24129..1fc67a0669 100644
--- a/test/kb_8042.tasklist
+++ b/test/kb_8042.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
diff --git a/test/kb_mkbp.tasklist b/test/kb_mkbp.tasklist
index 2368d7bc52..3a50642a32 100644
--- a/test/kb_mkbp.tasklist
+++ b/test/kb_mkbp.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(KEYSCAN, keyboard_scan_task, NULL, 256) \
diff --git a/test/kb_scan.tasklist b/test/kb_scan.tasklist
index 85aee504fa..7e46badf47 100644
--- a/test/kb_scan.tasklist
+++ b/test/kb_scan.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(KEYSCAN, keyboard_scan_task, NULL, 256) \
diff --git a/test/lid_sw.tasklist b/test/lid_sw.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/lid_sw.tasklist
+++ b/test/lid_sw.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/lightbar.tasklist b/test/lightbar.tasklist
index 71a89d6e07..2c10c3452b 100644
--- a/test/lightbar.tasklist
+++ b/test/lightbar.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(LIGHTBAR, lightbar_task, NULL, LARGER_TASK_STACK_SIZE)
diff --git a/test/math_util.tasklist b/test/math_util.tasklist
index f6dffa16e8..6014b4d930 100644
--- a/test/math_util.tasklist
+++ b/test/math_util.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/motion_angle.tasklist b/test/motion_angle.tasklist
index 60688f9c34..5fa9d86717 100644
--- a/test/motion_angle.tasklist
+++ b/test/motion_angle.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(MOTIONSENSE, motion_sense_task, NULL, TASK_STACK_SIZE)
diff --git a/test/motion_angle_tablet.tasklist b/test/motion_angle_tablet.tasklist
index 60688f9c34..5fa9d86717 100644
--- a/test/motion_angle_tablet.tasklist
+++ b/test/motion_angle_tablet.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(MOTIONSENSE, motion_sense_task, NULL, TASK_STACK_SIZE)
diff --git a/test/motion_lid.tasklist b/test/motion_lid.tasklist
index 60688f9c34..5fa9d86717 100644
--- a/test/motion_lid.tasklist
+++ b/test/motion_lid.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(MOTIONSENSE, motion_sense_task, NULL, TASK_STACK_SIZE)
diff --git a/test/mutex.tasklist b/test/mutex.tasklist
index d4865f3456..5ca24994a6 100644
--- a/test/mutex.tasklist
+++ b/test/mutex.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(MTX3C, mutex_random_task, NULL, 384) \
diff --git a/test/nvmem.tasklist b/test/nvmem.tasklist
index 25f61b13d6..43afb03fb5 100644
--- a/test/nvmem.tasklist
+++ b/test/nvmem.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(NV_1, nvmem_first_task, NULL, 384) \
diff --git a/test/pingpong.tasklist b/test/pingpong.tasklist
index 84cf7b11d4..afb62c6e95 100644
--- a/test/pingpong.tasklist
+++ b/test/pingpong.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(TESTA, task_abc, NULL, TASK_STACK_SIZE) \
diff --git a/test/pinweaver.tasklist b/test/pinweaver.tasklist
index de4df33e13..24870f2abb 100644
--- a/test/pinweaver.tasklist
+++ b/test/pinweaver.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/power_button.tasklist b/test/power_button.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/power_button.tasklist
+++ b/test/power_button.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/powerdemo.tasklist b/test/powerdemo.tasklist
index ecb39fd58b..e69b98baae 100644
--- a/test/powerdemo.tasklist
+++ b/test/powerdemo.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(POWERDEMO, power_demo_task, NULL, TASK_STACK_SIZE)
diff --git a/test/queue.tasklist b/test/queue.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/queue.tasklist
+++ b/test/queue.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/rma_auth.tasklist b/test/rma_auth.tasklist
index e241aab4bb..7150f17cbd 100644
--- a/test/rma_auth.tasklist
+++ b/test/rma_auth.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/rsa.tasklist b/test/rsa.tasklist
index 30e5f7fc22..f46a2eaa1d 100644
--- a/test/rsa.tasklist
+++ b/test/rsa.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/rtc.tasklist b/test/rtc.tasklist
index e76178ba0a..80072bb620 100644
--- a/test/rtc.tasklist
+++ b/test/rtc.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/sbs_charging_v2.tasklist b/test/sbs_charging_v2.tasklist
index a87856a123..d38e4182b6 100644
--- a/test/sbs_charging_v2.tasklist
+++ b/test/sbs_charging_v2.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(CHARGER, charger_task, NULL, TASK_STACK_SIZE) \
diff --git a/test/sha256.tasklist b/test/sha256.tasklist
index e76178ba0a..80072bb620 100644
--- a/test/sha256.tasklist
+++ b/test/sha256.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/shmalloc.tasklist b/test/shmalloc.tasklist
index ab483e513f..a8ef01a489 100644
--- a/test/shmalloc.tasklist
+++ b/test/shmalloc.tasklist
@@ -5,15 +5,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST
diff --git a/test/stress.tasklist b/test/stress.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/stress.tasklist
+++ b/test/stress.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/system.tasklist b/test/system.tasklist
index 97128ce472..d95b1f72ac 100644
--- a/test/system.tasklist
+++ b/test/system.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE)
diff --git a/test/thermal.tasklist b/test/thermal.tasklist
index 8ef20bab32..f8f1ee6fc8 100644
--- a/test/thermal.tasklist
+++ b/test/thermal.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE)
diff --git a/test/timer_calib.tasklist b/test/timer_calib.tasklist
index b99c0016c7..d5fe088549 100644
--- a/test/timer_calib.tasklist
+++ b/test/timer_calib.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(TESTTMR, timer_calib_task, NULL, TASK_STACK_SIZE)
diff --git a/test/timer_dos.tasklist b/test/timer_dos.tasklist
index 3ebce139e2..9ab5635261 100644
--- a/test/timer_dos.tasklist
+++ b/test/timer_dos.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(TMRA, task_timer, (void *)1234, TASK_STACK_SIZE) \
diff --git a/test/timer_jump.tasklist b/test/timer_jump.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/timer_jump.tasklist
+++ b/test/timer_jump.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/usb_pd.tasklist b/test/usb_pd.tasklist
index 4d95d0b156..9e4ac21c0e 100644
--- a/test/usb_pd.tasklist
+++ b/test/usb_pd.tasklist
@@ -4,15 +4,7 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST \
TASK_TEST(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \
diff --git a/test/utils.tasklist b/test/utils.tasklist
index 26cfc53453..15b923abe3 100644
--- a/test/utils.tasklist
+++ b/test/utils.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/utils_str.tasklist b/test/utils_str.tasklist
index e241aab4bb..7150f17cbd 100644
--- a/test/utils_str.tasklist
+++ b/test/utils_str.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/vboot.tasklist b/test/vboot.tasklist
index e241aab4bb..7150f17cbd 100644
--- a/test/vboot.tasklist
+++ b/test/vboot.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST /* No test task */
diff --git a/test/x25519.tasklist b/test/x25519.tasklist
index e76178ba0a..80072bb620 100644
--- a/test/x25519.tasklist
+++ b/test/x25519.tasklist
@@ -4,14 +4,6 @@
*/
/**
- * List of enabled tasks in the priority order
- *
- * The first one has the lowest priority.
- *
- * For each task, use the macro TASK_TEST(n, r, d, s) where :
- * 'n' in the name of the task
- * 'r' in the main routine of the task
- * 'd' in an opaque parameter passed to the routine at startup
- * 's' is the stack size in bytes; must be a multiple of 8
+ * See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TEST_TASK_LIST