style(9): insert an empty line if the function has no local variables

Pointed out by:	grehan
This commit is contained in:
Neel Natu 2014-09-13 22:45:04 +00:00
parent c2a875f970
commit fa7caa91cb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/bhyve_svm/; revision=271557

View File

@ -227,12 +227,14 @@ svm_cpuid_features(void)
static __inline int static __inline int
flush_by_asid(void) flush_by_asid(void)
{ {
return (svm_feature & AMD_CPUID_SVM_FLUSH_BY_ASID); return (svm_feature & AMD_CPUID_SVM_FLUSH_BY_ASID);
} }
static __inline int static __inline int
decode_assist(void) decode_assist(void)
{ {
return (svm_feature & AMD_CPUID_SVM_DECODE_ASSIST); return (svm_feature & AMD_CPUID_SVM_DECODE_ASSIST);
} }