Merge "soc: qcom: make debugfs support configurable for kryo l2 accessors driver"

This commit is contained in:
Linux Build Service Account 2017-01-31 04:42:36 -08:00 committed by Gerrit - the friendly Code Review server
commit a874c1606f
2 changed files with 13 additions and 3 deletions

View file

@ -178,6 +178,16 @@ config MSM_QMI_INTERFACE
to perform QMI message marshaling and transport them over IPC
Router.
config MSM_L2_IA_DEBUG
bool "Enable MSM L2 Indirect Access Debug"
depends on DEBUG_FS
default n
help
This option enables L2 indirect access debug
capability. It exposes L2 indirect access
debugfs interface to get/set data, address,
and target cpus.
config MSM_RPM_SMD
bool "RPM driver using SMD protocol"
help

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
* Copyright (c) 2014-2015, 2017, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@ -80,7 +80,7 @@ u64 get_l2_indirect_reg(u64 reg)
}
EXPORT_SYMBOL(get_l2_indirect_reg);
#if defined(CONFIG_DEBUG_FS)
#if defined(CONFIG_MSM_L2_IA_DEBUG)
static u32 debug_addr;
static int debug_target_cpu;
@ -180,4 +180,4 @@ static int l2_ia_debug_init(void)
}
late_initcall(l2_ia_debug_init);
#endif /* CONFIG_DEBUG_FS */
#endif /* CONFIG_MSM_L2_IA_DEBUG */