mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-20 02:05:19 +02:00
gencat/: remove awkward callback from set_libs to lookup_sym
This commit is contained in:
parent
b3113fca04
commit
b34b0917dd
@ -93,7 +93,7 @@ int main(int argc, char **argv)
|
||||
}
|
||||
read_tree(file);
|
||||
fclose(file);
|
||||
set_libs(tree, lookup_sym);
|
||||
set_libs(tree);
|
||||
|
||||
for (arg = argv+optind+1; *arg; arg++) {
|
||||
file = fopen(*arg, "r");
|
||||
|
@ -203,21 +203,19 @@ void read_desc(FILE *file)
|
||||
}
|
||||
|
||||
|
||||
void set_libs(struct node *node,
|
||||
const char *(*find_lib)(const char *sym, const struct name **names,
|
||||
int *units))
|
||||
void set_libs(struct node *node)
|
||||
{
|
||||
while (node) {
|
||||
if (!node->child) {
|
||||
node->lib =
|
||||
find_lib(node->name, &node->names, &node->units);
|
||||
node->lib = lookup_sym(node->name,
|
||||
&node->names, &node->units);
|
||||
if (!node->lib) {
|
||||
fprintf(stderr, "symbol %s not found\n",
|
||||
node->name);
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
set_libs(node->child, find_lib);
|
||||
set_libs(node->child);
|
||||
node = node->next;
|
||||
}
|
||||
}
|
||||
|
@ -39,9 +39,7 @@ extern struct node *tree;
|
||||
|
||||
void read_tree(FILE *file);
|
||||
void read_desc(FILE *file);
|
||||
void set_libs(struct node *node,
|
||||
const char *(*find_lib)(const char *sym, const struct name **names,
|
||||
int *units));
|
||||
void set_libs(struct node *node);
|
||||
void dump_tree(void);
|
||||
void dump_comp(void);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user