aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>1997-03-25 19:12:08 +0000
committerStefan Eßer <se@FreeBSD.org>1997-03-25 19:12:08 +0000
commit6072387d6532b907c9d0447a2d23ebc2b434143e (patch)
treee90da40862fe488fba1fd7a92946a263e62bfcce /sys/dev
parentaf78f012fd08ce2997c7cbbc3a251b7fc275049b (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c
index f6f13d8019b6..531f4aa2b063 100644
--- a/sys/dev/pci/pci.c
+++ b/sys/dev/pci/pci.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pci.c,v 1.66 1997/02/22 09:44:11 peter Exp $
+** $Id: pci.c,v 1.67 1997/03/25 19:01:46 se Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@@ -814,12 +814,12 @@ pci_bus_config (void)
#ifndef PCI_QUIET
if (bootverbose) {
if (pcicb->pcicb_mamount)
- printf ("%s%d: uses %d bytes of memory from %x upto %x.\n",
+ printf ("%s%d: uses %ud bytes of memory from %x upto %x.\n",
pcibus->pb_name, bus_no,
pcicb->pcicb_mamount,
pcicb->pcicb_mfrom, pcicb->pcicb_mupto);
if (pcicb->pcicb_pamount)
- printf ("%s%d: uses %d bytes of I/O space from %x upto %x.\n",
+ printf ("%s%d: uses %ud bytes of I/O space from %x upto %x.\n",
pcibus->pb_name, bus_no,
pcicb->pcicb_pamount,
pcicb->pcicb_pfrom, pcicb->pcicb_pupto);