diff options
author | alc <alc@FreeBSD.org> | 2004-07-05 23:08:27 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2004-07-05 23:08:27 +0000 |
commit | f2aa52f71a3c1352f909f999aa5c8940d403c060 (patch) | |
tree | caa5955bf44dc7a626fe59a0ab65efc68e73fd07 /sys/arm | |
parent | 2cf04d55ce23499422804bcec2938c18f3b1b32c (diff) | |
download | FreeBSD-src-f2aa52f71a3c1352f909f999aa5c8940d403c060.zip FreeBSD-src-f2aa52f71a3c1352f909f999aa5c8940d403c060.tar.gz |
Correct pmap_extract()'s return type. It should be vm_paddr_t, not
vm_offset_t.
Diffstat (limited to 'sys/arm')
-rw-r--r-- | sys/arm/arm/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/arm/pmap.c b/sys/arm/arm/pmap.c index 2dce2ae..1cb35b6 100644 --- a/sys/arm/arm/pmap.c +++ b/sys/arm/arm/pmap.c @@ -3488,7 +3488,7 @@ pmap_kextract(vm_offset_t va) * Extract the physical page address associated * with the given map/virtual_address pair. */ -vm_offset_t +vm_paddr_t pmap_extract(pmap_t pm, vm_offset_t va) { struct l2_dtable *l2; |