1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-12 09:58:36 +00:00

More debug under boot verbose.

This commit is contained in:
Warner Losh 2003-08-29 23:25:00 +00:00
parent b9baf113c1
commit 0c15221610
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119566

View File

@ -271,10 +271,11 @@ pcic_memory(struct slot *slt, int win)
pcic_putw(sp, reg+4, 0);
}
if (bootverbose)
printf("pcic: mem addr %p: reg %d: %x %x %x %x %x %x\n",
printf("pcic: mem addr %p: reg %d: %x %x %x %x %x %x %x\n",
mp->start, reg, sp->getb(sp, reg), sp->getb(sp, reg+1),
sp->getb(sp, reg+2), sp->getb(sp, reg+3),
sp->getb(sp, reg+3), sp->getb(sp, reg+5));
sp->getb(sp, reg+3), sp->getb(sp, reg+5),
sp->getb(sp, PCIC_ADDRWINE));
return (0);
}