diff options
author | 2006-03-20 15:11:48 +0000 | |
---|---|---|
committer | 2006-03-20 15:11:48 +0000 | |
commit | fdd3f45b8fdbd18ef13c7dc5c42e999fc2ff4e34 (patch) | |
tree | 109c0beafb5dc3316f1b9a0586988f690d4259d0 /lib/libkvm/kvm_arm.c | |
parent | a bit of demagification. this moves the checks for the cpu scaling features (diff) | |
download | wireguard-openbsd-fdd3f45b8fdbd18ef13c7dc5c42e999fc2ff4e34.tar.xz wireguard-openbsd-fdd3f45b8fdbd18ef13c7dc5c42e999fc2ff4e34.zip |
for some of internal functions use paddr_t where phys addr is intended insteadd of u_long; miod@ ok
Diffstat (limited to 'lib/libkvm/kvm_arm.c')
-rw-r--r-- | lib/libkvm/kvm_arm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libkvm/kvm_arm.c b/lib/libkvm/kvm_arm.c index c896e0dd157..a5853bf3469 100644 --- a/lib/libkvm/kvm_arm.c +++ b/lib/libkvm/kvm_arm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm_arm.c,v 1.3 2004/09/15 19:31:31 miod Exp $ */ +/* $OpenBSD: kvm_arm.c,v 1.4 2006/03/20 15:11:48 mickey Exp $ */ /*- * Copyright (C) 1996 Wolfgang Solfrank. @@ -60,14 +60,14 @@ _kvm_initvtop(kvm_t *kd) } int -_kvm_kvatop(kvm_t *kd, u_long va, u_long *pa) +_kvm_kvatop(kvm_t *kd, u_long va, paddr_t *pa) { _kvm_err(kd, 0, "vatop not yet implemented!"); return (0); } off_t -_kvm_pa2off(kvm_t *kd, u_long pa) +_kvm_pa2off(kvm_t *kd, paddr_t pa) { _kvm_err(kd, 0, "pa2off not yet implemented!"); return (0); |