|
@@ -1,6 +1,6 @@
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
/*
|
|
|
- * Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2015-2020, The Linux Foundation. All rights reserved.
|
|
|
*/
|
|
|
|
|
|
#include <linux/debugfs.h>
|
|
@@ -147,11 +147,6 @@ struct ipa_mhi_client_ctx {
|
|
|
static struct ipa_mhi_client_ctx *ipa_mhi_client_ctx;
|
|
|
static DEFINE_MUTEX(mhi_client_general_mutex);
|
|
|
|
|
|
-#ifdef CONFIG_DEBUG_FS
|
|
|
-#define IPA_MHI_MAX_MSG_LEN 512
|
|
|
-static char dbg_buff[IPA_MHI_MAX_MSG_LEN];
|
|
|
-static struct dentry *dent;
|
|
|
-
|
|
|
static char *ipa_mhi_channel_state_str[] = {
|
|
|
__stringify(IPA_HW_MHI_CHANNEL_STATE_DISABLE),
|
|
|
__stringify(IPA_HW_MHI_CHANNEL_STATE_ENABLE),
|
|
@@ -262,6 +257,11 @@ fail_dma_enable:
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_DEBUG_FS
|
|
|
+#define IPA_MHI_MAX_MSG_LEN 512
|
|
|
+static char dbg_buff[IPA_MHI_MAX_MSG_LEN];
|
|
|
+static struct dentry *dent;
|
|
|
+
|
|
|
static int ipa_mhi_print_channel_info(struct ipa_mhi_channel_ctx *channel,
|
|
|
char *buff, int len)
|
|
|
{
|
|
@@ -2186,10 +2186,12 @@ int ipa_mhi_destroy_all_channels(void)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_DEBUG_FS
|
|
|
static void ipa_mhi_debugfs_destroy(void)
|
|
|
{
|
|
|
debugfs_remove_recursive(dent);
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
static void ipa_mhi_deregister_pm(void)
|
|
|
{
|