From 49d71a01abeefa000a4cd7a556052d826b096d49 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 20 Jul 2013 10:12:44 +0000 Subject: Renamed or added prefix to all hernel configuration options. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6010 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- test/testpools.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/testpools.c') diff --git a/test/testpools.c b/test/testpools.c index 6ff669227..18063e111 100644 --- a/test/testpools.c +++ b/test/testpools.c @@ -30,7 +30,7 @@ * *

Preconditions

* The module requires the following kernel options: - * - @p CH_USE_MEMPOOLS + * - @p CH_CFG_USE_MEMPOOLS * . * In case some of the required options are not enabled then some or all tests * may be skipped. @@ -44,7 +44,7 @@ * @brief Memory Pools test header file */ -#if CH_USE_MEMPOOLS || defined(__DOXYGEN__) +#if CH_CFG_USE_MEMPOOLS || defined(__DOXYGEN__) static MEMORYPOOL_DECL(mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL); @@ -104,13 +104,13 @@ ROMCONST struct testcase testpools1 = { pools1_execute }; -#endif /* CH_USE_MEMPOOLS */ +#endif /* CH_CFG_USE_MEMPOOLS */ /* * @brief Test sequence for pools. */ ROMCONST struct testcase * ROMCONST patternpools[] = { -#if CH_USE_MEMPOOLS || defined(__DOXYGEN__) +#if CH_CFG_USE_MEMPOOLS || defined(__DOXYGEN__) &testpools1, #endif NULL -- cgit v1.2.3