doc: fix some errors

I've been seeing these cause errors on the more recent versions of
Doxygen which come with Arch Linux for a while now. Fix these:

error: Illegal format for option TCL_SUBST, no equal sign ('=') specified for item 'YES'
$ZEPHYR_BASE/tests/kernel/mem_protect/futex/src/main.c:461: warning: end of file with unbalanced grouping commands

Just trying to get them out of my local output and as preparation for
whenever they start showing up for Ubuntu.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2020-03-12 19:07:56 -07:00 committed by Anas Nashif
commit ededeb2736
2 changed files with 4 additions and 6 deletions

View file

@ -225,12 +225,6 @@ ALIASES = "rst=\verbatim embed:rst:leading-asterisk" \
ALIASES += "req=\xrefitem req \"Requirement\" \"Requirements\" "
# This tag can be used to specify a number of word-keyword mappings (TCL only).
# A mapping has the form "name=value". For example adding "class=itcl::class"
# will allow you to use the command class in the itcl::class meaning.
TCL_SUBST = YES
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
# only. Doxygen will then generate output that is more tailored for C. For
# instance, some of the names that are used will be different. The list of all

View file

@ -458,3 +458,7 @@ void test_main(void)
ztest_unit_test(test_futex_wait_nowait));
ztest_run_test_suite(test_futex);
}
/**
* @}
*/