2020-12-10 00:06:03 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2012-2014 Intel Corporation
|
|
|
|
* Copyright (C) 2013-2015 Intel Mobile Communications GmbH
|
|
|
|
* Copyright (C) 2016-2017 Intel Deutschland GmbH
|
|
|
|
*/
|
2017-09-26 11:31:55 +00:00
|
|
|
#include "runtime.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_IWLWIFI_DEBUGFS
|
2019-01-22 16:21:21 +01:00
|
|
|
void iwl_fwrt_dbgfs_register(struct iwl_fw_runtime *fwrt,
|
2017-09-26 11:31:55 +00:00
|
|
|
struct dentry *dbgfs_dir);
|
|
|
|
|
|
|
|
#else
|
2019-01-22 16:21:21 +01:00
|
|
|
static inline void iwl_fwrt_dbgfs_register(struct iwl_fw_runtime *fwrt,
|
|
|
|
struct dentry *dbgfs_dir) { }
|
2017-09-26 11:31:55 +00:00
|
|
|
|
|
|
|
#endif /* CONFIG_IWLWIFI_DEBUGFS */
|