diff options
author | bde <bde@FreeBSD.org> | 1996-03-19 15:03:00 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-03-19 15:03:00 +0000 |
commit | 450b4c5cf434f35a45a1ff9dd6fc634fd777d712 (patch) | |
tree | 832a264c27be21f32c4604bbdcf83739414789f3 /sys/pci/pcivar.h | |
parent | 16bb0803c0e2d0d807e6eebb114f9e6c95637034 (diff) | |
download | FreeBSD-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/pci/pcivar.h')
-rw-r--r-- | sys/pci/pcivar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/pcivar.h b/sys/pci/pcivar.h index d693459..4f4a29f 100644 --- a/sys/pci/pcivar.h +++ b/sys/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); /*----------------------------------------------------------------- ** |