fix misspelling of ORIR_NOTFOUND

This commit is contained in:
John-Mark Gurney 2003-06-16 19:06:36 +00:00
parent bbddbed9f3
commit ad0c7dea8c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116448

View File

@ -170,7 +170,7 @@ isa_route_intr_res(device_t bus, u_long start, u_long end)
if (start > 7)
panic("isa_route_intr_res: start out of isa range");
res = isa_ino[start];
if (res == 255)
if (res == ORIR_NOTFOUND)
device_printf(bus, "could not map interrupt %d\n", res);
return (res);
}