summaryrefslogtreecommitdiff
path: root/util/getpir/code_gen.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/getpir/code_gen.c')
-rw-r--r--util/getpir/code_gen.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/util/getpir/code_gen.c b/util/getpir/code_gen.c
index 32528633a0..150d083d86 100644
--- a/util/getpir/code_gen.c
+++ b/util/getpir/code_gen.c
@@ -13,16 +13,21 @@ static char *preamble[] = {
0
};
-void code_gen(FILE * fpir, struct irq_routing_table *rt)
+void code_gen(char *filename, struct irq_routing_table *rt)
{
char **code = preamble;
struct irq_info *se_arr = (struct irq_info *) ((char *) rt + 32);
int i, ts = (rt->size - 32) / 16;
+ FILE *fpir;
+
+ if ((fpir = fopen(filename, "w")) == NULL) {
+ printf("Failed creating file!\n");
+ exit(2);
+ }
while (*code)
fprintf(fpir, "%s", *code++);
-
fprintf(fpir, "\t32+16*%d, /* there can be total %d devices on the bus */\n",
ts, ts);
fprintf(fpir, "\t0x%02x, /* Where the interrupt router lies (bus) */\n",
@@ -52,4 +57,6 @@ void code_gen(FILE * fpir, struct irq_routing_table *rt)
}
fprintf(fpir, "\t}\n");
fprintf(fpir, "};\n");
+
+ fclose(fpir);
}