summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillie Ruan <wruan@codeaurora.org>2016-09-15 14:14:55 -0700
committerWillie Ruan <wruan@codeaurora.org>2016-09-15 14:20:00 -0700
commit0491485ebef75e13f4dbbebb07ea7e226836ae83 (patch)
treeb5c106faab614bc48e5933dedd6a3a8a828c0532
parentab26d098793adbf90b77d414663e34ac0c7315f6 (diff)
soc:qcom: common_log: change PMIC dump size from 4k to 64k
4K bytes of size is not enough for PMIC register dump with multiple chips on a target and many peripherals. Increase it to 64K for this need. Change-Id: I2053eb292051514fa9965e6dc0420e790165ed0d Signed-off-by: Willie Ruan <wruan@codeaurora.org>
-rw-r--r--drivers/soc/qcom/common_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/common_log.c b/drivers/soc/qcom/common_log.c
index d2d877ef427b..e5fbfa16cae3 100644
--- a/drivers/soc/qcom/common_log.c
+++ b/drivers/soc/qcom/common_log.c
@@ -20,7 +20,7 @@
#include <soc/qcom/memory_dump.h>
#define MISC_DUMP_DATA_LEN 4096
-#define PMIC_DUMP_DATA_LEN 4096
+#define PMIC_DUMP_DATA_LEN (64 * 1024)
#define VSENSE_DUMP_DATA_LEN 4096
#define RPM_DUMP_DATA_LEN (160 * 1024)
#define SCAN_DUMP_DATA_LEN (256 * 1024)