diff options
| -rw-r--r-- | core/hdd/inc/wlan_hdd_debugfs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/hdd/inc/wlan_hdd_debugfs.h b/core/hdd/inc/wlan_hdd_debugfs.h index f5bfb1b49452..9633e0018e4e 100644 --- a/core/hdd/inc/wlan_hdd_debugfs.h +++ b/core/hdd/inc/wlan_hdd_debugfs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved. + * Copyright (c) 2013-2017 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, Inc. * @@ -28,17 +28,17 @@ #ifndef _WLAN_HDD_DEBUGFS_H #define _WLAN_HDD_DEBUGFS_H -#ifdef WLAN_OPEN_SOURCE +#ifdef WLAN_DEBUGFS QDF_STATUS hdd_debugfs_init(hdd_adapter_t *adapter); void hdd_debugfs_exit(hdd_adapter_t *adapter); #else -inline QDF_STATUS hdd_debugfs_init(hdd_adapter_t *pAdapter) +static inline QDF_STATUS hdd_debugfs_init(hdd_adapter_t *pAdapter) { return QDF_STATUS_SUCCESS; } -inline void hdd_debugfs_exit(hdd_adapter_t *adapter) +static inline void hdd_debugfs_exit(hdd_adapter_t *adapter) { } -#endif /* #ifdef WLAN_OPEN_SOURCE */ +#endif /* #ifdef WLAN_DEBUGFS */ #endif /* #ifndef _WLAN_HDD_DEBUGFS_H */ |
