scripts: remove unused argument 'type'

Remove unused function argument, and there is
no logic changes.

Signed-off-by: Zeng Heng <zengheng4@huawei.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
Zeng Heng 2022-09-14 20:09:21 +08:00 коммит произвёл Masahiro Yamada
Родитель efc8338e3a
Коммит a8d5692659
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -832,7 +832,7 @@ static void parse(void)
static struct element *element_list; static struct element *element_list;
static struct element *alloc_elem(struct token *type) static struct element *alloc_elem(void)
{ {
struct element *e = calloc(1, sizeof(*e)); struct element *e = calloc(1, sizeof(*e));
if (!e) { if (!e) {
@ -860,7 +860,7 @@ static struct element *parse_type(struct token **_cursor, struct token *end,
char *p; char *p;
int labelled = 0, implicit = 0; int labelled = 0, implicit = 0;
top = element = alloc_elem(cursor); top = element = alloc_elem();
element->class = ASN1_UNIV; element->class = ASN1_UNIV;
element->method = ASN1_PRIM; element->method = ASN1_PRIM;
element->tag = token_to_tag[cursor->token_type]; element->tag = token_to_tag[cursor->token_type];
@ -939,7 +939,7 @@ static struct element *parse_type(struct token **_cursor, struct token *end,
if (!implicit) if (!implicit)
element->method |= ASN1_CONS; element->method |= ASN1_CONS;
element->compound = implicit ? TAG_OVERRIDE : SEQUENCE; element->compound = implicit ? TAG_OVERRIDE : SEQUENCE;
element->children = alloc_elem(cursor); element->children = alloc_elem();
element = element->children; element = element->children;
element->class = ASN1_UNIV; element->class = ASN1_UNIV;
element->method = ASN1_PRIM; element->method = ASN1_PRIM;