1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-22 11:17:19 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=233308

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;