summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2003-08-29 23:25:00 +0000
committerWarner Losh <imp@FreeBSD.org>2003-08-29 23:25:00 +0000
commit0c15221610db43a66858ca5286f4c664fd9b231e (patch)
treecbeaf42b06033ccb28ddf34798ee6cf8a9e29e7c
parentb9baf113c19d4201db8da17aa0a9117c7b5b4470 (diff)
Notes
-rw-r--r--sys/pccard/pcic.c5
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);
}