mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't record an irq mask if its empty - it confuses the resource allocator.
This commit is contained in:
parent
328d36e934
commit
7cb314ad2a
1 changed files with 3 additions and 1 deletions
|
|
@ -96,8 +96,10 @@ pnp_parse_resources(device_t dev, u_char *resources, int len)
|
|||
break;
|
||||
|
||||
case PNP_TAG_IRQ_FORMAT:
|
||||
if (!I16(resinfo))
|
||||
break;
|
||||
if (bootverbose) {
|
||||
printf("%s: adding irq mask %#04x\n",
|
||||
printf("%s: adding irq mask %#02x\n",
|
||||
pnp_eisaformat(id),
|
||||
I16(resinfo));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue