blob: 7b912c835123105adfca37814936f2182c76c298 [file] [log] [blame]
Yue Ma0d4891e2013-08-06 17:01:45 -07001/*
2* Copyright (c) 2013 Qualcomm Atheros, Inc.
3* All Rights Reserved.
4* Qualcomm Atheros Confidential and Proprietary.
5*/
6
7#ifndef _WLAN_HDD_DEBUGFS_H
8#define _WLAN_HDD_DEBUGFS_H
9
10#ifdef WLAN_OPEN_SOURCE
11VOS_STATUS hdd_debugfs_init(hdd_adapter_t *pAdapter);
12void hdd_debugfs_exit(hdd_context_t *pHddCtx);
13#else
14inline VOS_STATUS hdd_debugfs_init(hdd_adapter_t *pAdapter)
15{
16 return VOS_STATUS_SUCCESS;
17}
18inline void hdd_debugfs_exit(hdd_context_t *pHddCtx)
19{
20}
21#endif
22
23#endif /* #ifndef _WLAN_HDD_DEBUGFS_H */
24