Fix return type of mips pmap_kextract()

The return type should be vm_paddr_t, not vm_offset_t.
This commit is contained in:
Jayachandran C. 2012-03-22 15:14:10 +00:00
parent 758ffbfa3b
commit 0e37e252d2

View File

@ -3209,7 +3209,7 @@ pmap_emulate_modified(pmap_t pmap, vm_offset_t va)
* Extract the physical page address associated
* virtual address.
*/
/* PMAP_INLINE */ vm_offset_t
vm_paddr_t
pmap_kextract(vm_offset_t va)
{
int mapped;