From 1b2ded24d87e461ba5f299e77d641b815c545ca3 Mon Sep 17 00:00:00 2001 From: Seppo Ingalsuo Date: Fri, 1 Jul 2022 17:57:32 +0300 Subject: [PATCH] Doxygen: Increase DOT_GRAPH_MAX_NODES to 120 This avoids a currently happening error: "error: Include graph for 'src_ipc4_int32_table.h' not generated, too many nodes (89), threshold is 50. Consider increasing DOT_GRAPH_MAX_NODES." and another warning that happened with first increase to 100: "warning: Included by graph for 'src.h' not generated, too many nodes (111), threshold is 100. Consider increasing DOT_GRAPH_MAX_NODES." Signed-off-by: Seppo Ingalsuo --- doc/sof.doxygen.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/sof.doxygen.in b/doc/sof.doxygen.in index 32a99fc8c480..026d117413bf 100644 --- a/doc/sof.doxygen.in +++ b/doc/sof.doxygen.in @@ -39,3 +39,6 @@ TYPEDEF_HIDES_STRUCT = YES #FILTER_SOURCE_FILES = YES HTML_TIMESTAMP = NO + +# Avoid error "Include graph for 'foobar.h' not generated, too many nodes" +DOT_GRAPH_MAX_NODES = 120