1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-14 14:55:41 +00:00

Don't record an irq mask if its empty - it confuses the resource allocator.

This commit is contained in:
Doug Rabson 2000-06-25 09:19:59 +00:00
parent 328d36e934
commit 7cb314ad2a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62060

View File

@ -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));
}