summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-03-19 15:03:00 +0000
committerbde <bde@FreeBSD.org>1996-03-19 15:03:00 +0000
commit450b4c5cf434f35a45a1ff9dd6fc634fd777d712 (patch)
tree832a264c27be21f32c4604bbdcf83739414789f3 /sys/dev
parent16bb0803c0e2d0d807e6eebb114f9e6c95637034 (diff)
downloadFreeBSD-src-450b4c5cf434f35a45a1ff9dd6fc634fd777d712.zip
FreeBSD-src-450b4c5cf434f35a45a1ff9dd6fc634fd777d712.tar.gz
Fixed unsigned longs that should have been vm_offset_t.
vm_offset_t is currently unsigned long but should probably be plain unsigned for i386's to match the choice of minimal types to represent for fixed-width types in Lite2. Anyway, it shouldn't be assumed to be unsigned long. I only fixed the type mismatches that were detected when I changed vm_offset_t to unsigned. Only pointer type mismatches were detected.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/pcivar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h
index d693459..4f4a29f 100644
--- a/sys/dev/pci/pcivar.h
+++ b/sys/dev/pci/pcivar.h
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcivar.h,v 1.8 1996/01/23 21:47:17 se Exp $
+** $Id: pcivar.h,v 1.9 1996/01/25 18:32:00 se Exp $
**
** Declarations for pci device drivers.
**
@@ -187,7 +187,7 @@ struct pci_externalize_buffer {
**-----------------------------------------------------------------
*/
-int pci_map_mem (pcici_t tag, u_long entry, u_long * va, u_long * pa);
+int pci_map_mem (pcici_t tag, u_long entry, vm_offset_t *va, vm_offset_t *pa);
/*-----------------------------------------------------------------
**
OpenPOWER on IntegriCloud