Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /* routines exported for debugfs handling */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) #ifndef __IEEE80211_DEBUGFS_NETDEV_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) #define __IEEE80211_DEBUGFS_NETDEV_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #include "ieee80211_i.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) #ifdef CONFIG_MAC80211_DEBUGFS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) static inline void ieee80211_debugfs_add_netdev(
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) 	struct ieee80211_sub_if_data *sdata)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) {}
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) static inline void ieee80211_debugfs_remove_netdev(
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 	struct ieee80211_sub_if_data *sdata)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) {}
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) static inline void ieee80211_debugfs_rename_netdev(
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) 	struct ieee80211_sub_if_data *sdata)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) {}
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) #endif /* __IEEE80211_DEBUGFS_NETDEV_H */