mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 21:21:09 +00:00
kbuild: rename *-asn1.[ch] to *.asn1.[ch]
Our convention is to distinguish file types by suffixes with a period as a separator. *-asn1.[ch] is a different pattern from other generated sources such as *.lex.c, *.tab.[ch], *.dtb.S, etc. More confusing, files with '-asn1.[ch]' are generated files, but '_asn1.[ch]' are checked-in files: net/netfilter/nf_conntrack_h323_asn1.c include/linux/netfilter/nf_conntrack_h323_asn1.h include/linux/sunrpc/gss_asn1.h Rename generated files to *.asn1.[ch] for consistency. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
3ca3273eaa
commit
4fa8bc949d
12 changed files with 31 additions and 31 deletions
|
@ -1319,7 +1319,7 @@ static void render(FILE *out, FILE *hdr)
|
|||
fprintf(out, " * ASN.1 parser for %s\n", grammar_name);
|
||||
fprintf(out, " */\n");
|
||||
fprintf(out, "#include <linux/asn1_ber_bytecode.h>\n");
|
||||
fprintf(out, "#include \"%s-asn1.h\"\n", grammar_name);
|
||||
fprintf(out, "#include \"%s.asn1.h\"\n", grammar_name);
|
||||
fprintf(out, "\n");
|
||||
if (ferror(out)) {
|
||||
perror(outputname);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue