diff options
author | imp <imp@FreeBSD.org> | 2003-08-29 23:25:00 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-08-29 23:25:00 +0000 |
commit | 969776c958155b1d06798e4bcd5457f26a3bae42 (patch) | |
tree | cbeaf42b06033ccb28ddf34798ee6cf8a9e29e7c /sys/pccard | |
parent | 2e072728abd776ffc68b005b1bec8734e5f3442c (diff) | |
download | FreeBSD-src-969776c958155b1d06798e4bcd5457f26a3bae42.zip FreeBSD-src-969776c958155b1d06798e4bcd5457f26a3bae42.tar.gz |
More debug under boot verbose.
Diffstat (limited to 'sys/pccard')
-rw-r--r-- | sys/pccard/pcic.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index c21e300..3290abe 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -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); } |