Tools: Tune: SRC: Add line break between structs in generated code

This patch helps to pass the code style check in generated header
file src_<profile>_<data type>_table.h. The error was:

CHECK: Please use a blank line after function/struct/union/enum
declarations

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2022-04-21 16:55:48 +03:00 committed by Liam Girdwood
parent 5683382872
commit 91afe67ae5
1 changed files with 1 additions and 2 deletions

View File

@ -175,10 +175,9 @@ for n = 1:2
fprintf(fh, '\n');
end
end
fprintf(fh, '};\n');
fprintf(fh, '};\n\n');
end
fprintf(fh, '\n', def);
fprintf(fh, '#endif /* %s */\n', def);
fclose(fh);