summaryrefslogtreecommitdiff
path: root/util/getpir/code_gen.c
diff options
context:
space:
mode:
authorJeremy Jackson <jerj@coplanar.net>2007-04-11 18:44:42 +0000
committerStefan Reinauer <stepan@openbios.org>2007-04-11 18:44:42 +0000
commit46d65e85a1c0449f86497264d5958b3d85784767 (patch)
tree5cdc08216595f7de00c1df21ddc0d188d39b022e /util/getpir/code_gen.c
parent4880353e03c62baacecaf634bc66c91be423f853 (diff)
downloadcoreboot-46d65e85a1c0449f86497264d5958b3d85784767.tar.xz
Jeremy Jackson wrote:
I'm guessing nobody has tried compiling it with 64bit userspace? Patch makes it compile cleanly and stops a "SEGV instead of working" issue. I also added a few checks for errors on system calls. Signed-off-by: Jeremy Jackson <jerj@coplanar.net> Reworked and Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2602 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/getpir/code_gen.c')
-rw-r--r--util/getpir/code_gen.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/util/getpir/code_gen.c b/util/getpir/code_gen.c
index 150d083d86..a458eae27a 100644
--- a/util/getpir/code_gen.c
+++ b/util/getpir/code_gen.c
@@ -1,12 +1,17 @@
#include <stdio.h>
-#include <arch/pirq_routing.h>
+#include <stdlib.h>
+#include "pirq_routing.h"
static char *preamble[] = {
"/* This file was generated by getpir.c, do not modify! \n (but if you do, please run checkpir on it to verify)\n",
" * Contains the IRQ Routing Table dumped directly from your memory, which BIOS sets up\n",
" *\n",
" * Documentation at : http://www.microsoft.com/hwdev/busbios/PCIIRQ.HTM\n*/\n\n",
- "#include <arch/pirq_routing.h>\n\n",
+ "#ifdef GETPIR\n",
+ "#include \"pirq_routing.h\"\n",
+ "#else\n"
+ "#include <arch/pirq_routing.h>\n",
+ "#endif\n\n"
"const struct irq_routing_table intel_irq_routing_table = {\n",
"\tPIRQ_SIGNATURE, /* u32 signature */\n",
"\tPIRQ_VERSION, /* u16 version */\n",