Fixed MTP to work with TWRP

This commit is contained in:
awab228 2018-06-19 23:16:04 +02:00
commit f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions

13
include/linux/kvm_para.h Normal file
View file

@ -0,0 +1,13 @@
#ifndef __LINUX_KVM_PARA_H
#define __LINUX_KVM_PARA_H
#include <uapi/linux/kvm_para.h>
static inline int kvm_para_has_feature(unsigned int feature)
{
if (kvm_arch_para_features() & (1UL << feature))
return 1;
return 0;
}
#endif /* __LINUX_KVM_PARA_H */