summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2005-05-27 06:40:46 +0000
committerJason Wright <jason@cvs.openbsd.org>2005-05-27 06:40:46 +0000
commit892f026c9a348b5cda44cc7fe5af7c0edd985875 (patch)
tree2cd3b7d455117fdc67d18181e05dedb11bf99525 /sys/arch
parent34d74a9d6bb530296d624bb77b86a589bf0e2bf2 (diff)
fix printf
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/pci/iommu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/pci/iommu.c b/sys/arch/amd64/pci/iommu.c
index 507b206a6f6..d4f659a5bdc 100644
--- a/sys/arch/amd64/pci/iommu.c
+++ b/sys/arch/amd64/pci/iommu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: iommu.c,v 1.3 2005/05/27 06:27:43 jason Exp $ */
+/* $OpenBSD: iommu.c,v 1.4 2005/05/27 06:40:45 jason Exp $ */
/*
* Copyright (c) 2005 Jason L. Wright (jason@thought.net)
@@ -386,7 +386,7 @@ amdgart_probe(struct pcibus_attach_args *pba)
amdgart_softcs[count].g_pte = pte;
amdgart_softcs[count].g_dmat = pba->pba_dmat;
- printf("\niommu%d(cpu%d): base 0x%lx length %d pte 0x%lx",
+ printf("\niommu%d(cpu%d): base 0x%lx length %dMB pte 0x%lx",
count, dev - 24, dvabase, IOMMU_SIZE,
VM_PAGE_TO_PHYS(TAILQ_FIRST(&plist)));
count++;