diff options
author | neel <neel@FreeBSD.org> | 2014-10-11 03:21:33 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2014-10-11 03:21:33 +0000 |
commit | bbecfc3c42e3976a290d50113afb0c3f0a21c511 (patch) | |
tree | 61a4e1722295cb83a09df867a35be48ed74b847d /sys/amd64/vmm/amd | |
parent | 3e5970c8ec5a2cefdb487be72fbdb23c25e40735 (diff) | |
download | FreeBSD-src-bbecfc3c42e3976a290d50113afb0c3f0a21c511.zip FreeBSD-src-bbecfc3c42e3976a290d50113afb0c3f0a21c511.tar.gz |
Get rid of unused forward declaration of 'struct svm_softc'.
Diffstat (limited to 'sys/amd64/vmm/amd')
-rw-r--r-- | sys/amd64/vmm/amd/npt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/amd64/vmm/amd/npt.h b/sys/amd64/vmm/amd/npt.h index be5c11e..5966474 100644 --- a/sys/amd64/vmm/amd/npt.h +++ b/sys/amd64/vmm/amd/npt.h @@ -29,9 +29,8 @@ #ifndef _SVM_NPT_H_ #define _SVM_NPT_H_ -struct svm_softc; - int svm_npt_init(int ipinum); struct vmspace *svm_npt_alloc(vm_offset_t min, vm_offset_t max); void svm_npt_free(struct vmspace *vmspace); + #endif /* _SVM_NPT_H_ */ |