removed unused assignirq.c and aute generated irq_tables.c

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1502 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Li-Ta Lo
2004-04-13 23:19:27 +00:00
parent 1dad71bf32
commit 6c4c00404b
3 changed files with 8 additions and 20 deletions

View File

@@ -3,15 +3,10 @@
Aug 26 2001 , Nikolai Vladychevski, <niko@isl.net.mx>
*/
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <device/pci.h>
#include <pirq_routing.h>
#define PIRQ_SIGNATURE (('$' << 0) + ('P' << 8) + ('I' << 16) + ('R' << 24))
#define PIRQ_VERS 0x0100
#include <arch/pirq_routing.h>
struct irq_info se_arr[50];
struct irq_routing_table rt;
@@ -65,7 +60,7 @@ main()
count = count + rcount;
printf("Version is:%d Table size:%d\n",
rt.version, rt.size);
if (rt.version != PIRQ_VERS) {
if (rt.version != PIRQ_VERSION) {
printf("Invalid version\n");
valid = 0;
}