treewide: fix build errors
This commit is contained in:
parent
dc32d2987c
commit
9418752122
3 changed files with 7 additions and 10 deletions
|
@ -22,8 +22,7 @@ menu "ARM GPU Configuration"
|
|||
|
||||
choice
|
||||
prompt "Mali Version Configuration"
|
||||
default MALI_DDK_VALHALL_R32P1 if $(PLATFORM_VERSION_FOR_GPU) = 12
|
||||
default MALI_DDK_VALHALL_R32P1 if $(PLATFORM_VERSION_FOR_GPU) >= 13
|
||||
default MALI_DDK_VALHALL_R32P1
|
||||
help
|
||||
Select Mali GPU driver version.
|
||||
|
||||
|
@ -36,9 +35,6 @@ config MALI_DDK_VALHALL_R26P0
|
|||
config MALI_DDK_VALHALL_R32P1
|
||||
bool "Valhall r32p1 driver"
|
||||
|
||||
config MALI_DDK_VALHALL_R38P1
|
||||
bool "Valhall r38p1 driver"
|
||||
|
||||
endchoice
|
||||
|
||||
if MALI_DDK_VALHALL_R26P0
|
||||
|
@ -49,8 +45,4 @@ if MALI_DDK_VALHALL_R32P1
|
|||
source "drivers/gpu/arm/bv_r32p1/Kconfig"
|
||||
endif
|
||||
|
||||
if MALI_DDK_VALHALL_R38P1
|
||||
source "drivers/gpu/arm/bv_r38p1/Kconfig"
|
||||
endif
|
||||
|
||||
endmenu
|
||||
|
|
3
drivers/sensorhub/vendor/Kconfig
vendored
3
drivers/sensorhub/vendor/Kconfig
vendored
|
@ -4,4 +4,5 @@ config SHUB_MTK
|
|||
|
||||
config SHUB_LSI
|
||||
tristate "lsi sensorhub"
|
||||
default y
|
||||
default y
|
||||
|
||||
|
|
|
@ -615,7 +615,9 @@ static void
|
|||
destroy_conntrack(struct nf_conntrack *nfct)
|
||||
{
|
||||
|
||||
#ifdef CONFIG_KNOX_NCM
|
||||
unsigned long flags;
|
||||
#endif
|
||||
struct nf_conn *ct = (struct nf_conn *)nfct;
|
||||
|
||||
// SEC_PRODUCT_FEATURE_KNOX_SUPPORT_NPA {
|
||||
|
@ -1581,7 +1583,9 @@ EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
|
|||
void nf_conntrack_free(struct nf_conn *ct)
|
||||
{
|
||||
|
||||
#ifdef CONFIG_KNOX_NCM
|
||||
unsigned long flags;
|
||||
#endif
|
||||
struct net *net = nf_ct_net(ct);
|
||||
|
||||
/* A freed object has refcnt == 0, that's
|
||||
|
|
Loading…
Reference in a new issue