diff options
| author | Warner Losh <imp@FreeBSD.org> | 2003-08-29 23:25:00 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2003-08-29 23:25:00 +0000 |
| commit | 0c15221610db43a66858ca5286f4c664fd9b231e (patch) | |
| tree | cbeaf42b06033ccb28ddf34798ee6cf8a9e29e7c | |
| parent | b9baf113c19d4201db8da17aa0a9117c7b5b4470 (diff) | |
Notes
| -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 c21e300dc021..3290abe231f3 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); } |
