Browse Source

cnss2: Include memory_dump.h when CONFIG_QCOM_MINIDUMP enabled

MSM_DUMP_DATA_CNSS_WLAN not defined during compilation,
if CONFIG_QCOM_MEMORY_DUMP_V2 disabled.
To resolve it, also include memory_dump.h header as well,
when CONFIG_QCOM_MINIDUMP enabled.

Change-Id: I55fe3ccd606168fb48d6c3a129960f01f1f72a07
Lin Bai 3 years ago
parent
commit
ed7cc00bfc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cnss2/main.h

+ 1 - 1
cnss2/main.h

@@ -27,7 +27,7 @@
 #else
 #include <net/cnss2.h>
 #endif
-#if IS_ENABLED(CONFIG_QCOM_MEMORY_DUMP_V2)
+#if IS_ENABLED(CONFIG_QCOM_MEMORY_DUMP_V2) || IS_ENABLED(CONFIG_QCOM_MINIDUMP)
 #include <soc/qcom/memory_dump.h>
 #endif
 #if IS_ENABLED(CONFIG_MSM_SUBSYSTEM_RESTART) || \