commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
16 lines
466 B
C
16 lines
466 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __MAC80211_DEBUGFS_STA_H
|
|
#define __MAC80211_DEBUGFS_STA_H
|
|
|
|
#include "sta_info.h"
|
|
|
|
#ifdef CONFIG_MAC80211_DEBUGFS
|
|
void ieee80211_sta_debugfs_add(struct sta_info *sta);
|
|
void ieee80211_sta_debugfs_remove(struct sta_info *sta);
|
|
#else
|
|
static inline void ieee80211_sta_debugfs_add(struct sta_info *sta) {}
|
|
static inline void ieee80211_sta_debugfs_remove(struct sta_info *sta) {}
|
|
#endif
|
|
|
|
#endif /* __MAC80211_DEBUGFS_STA_H */
|