Make the getpir output compile (Closes #70).

Signed-off-by: Jon Dufresne <jon.dufresne@gmail.com>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3189 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Jon Dufresne 2008-03-25 19:43:01 +00:00 committed by Uwe Hermann
parent 2216d1b46a
commit c88b537461
1 changed files with 5 additions and 0 deletions

View File

@ -66,5 +66,10 @@ void code_gen(char *filename, struct irq_routing_table *rt)
fprintf(fpir, "\t}\n");
fprintf(fpir, "};\n");
fprintf(fpir, "\nunsigned long write_pirq_routing_table(unsigned long addr)\n");
fprintf(fpir, "{\n");
fprintf(fpir, "\treturn copy_pirq_routing_table(addr);\n");
fprintf(fpir, "}\n");
fclose(fpir);
}