blob: 36de4db2ad1160f09fab0c31c91d309f2d9ef5cd [file] [log] [blame]
Yue Ma0d4891e2013-08-06 17:01:45 -07001/*
Kiet Lamaa8e15a2014-02-11 23:30:06 -08002 * Copyright (c) 2012-2013 Qualcomm Atheros, Inc.
3 * All Rights Reserved.
4 * Qualcomm Atheros Confidential and Proprietary.
Madan Mohan Koyyalamudi027c3672013-08-21 17:21:17 -07005 */
Yue Ma0d4891e2013-08-06 17:01:45 -07006#ifndef _WLAN_HDD_DEBUGFS_H
7#define _WLAN_HDD_DEBUGFS_H
8
9#ifdef WLAN_OPEN_SOURCE
10VOS_STATUS hdd_debugfs_init(hdd_adapter_t *pAdapter);
11void hdd_debugfs_exit(hdd_context_t *pHddCtx);
12#else
13inline VOS_STATUS hdd_debugfs_init(hdd_adapter_t *pAdapter)
14{
15 return VOS_STATUS_SUCCESS;
16}
17inline void hdd_debugfs_exit(hdd_context_t *pHddCtx)
18{
19}
Yue Mab9c86f42013-08-14 15:59:08 -070020#endif /* #ifdef WLAN_OPEN_SOURCE */
Yue Ma0d4891e2013-08-06 17:01:45 -070021#endif /* #ifndef _WLAN_HDD_DEBUGFS_H */
22