ieee80211_led.h

来自「linux 内核源代码」· C头文件 代码 · 共 39 行

H
39
字号
/* * Copyright 2006, Johannes Berg <johannes@sipsolutions.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#include <linux/list.h>#include <linux/spinlock.h>#include <linux/leds.h>#include "ieee80211_i.h"#ifdef CONFIG_MAC80211_LEDSextern void ieee80211_led_rx(struct ieee80211_local *local);extern void ieee80211_led_tx(struct ieee80211_local *local, int q);extern void ieee80211_led_assoc(struct ieee80211_local *local,				bool associated);extern void ieee80211_led_init(struct ieee80211_local *local);extern void ieee80211_led_exit(struct ieee80211_local *local);#elsestatic inline void ieee80211_led_rx(struct ieee80211_local *local){}static inline void ieee80211_led_tx(struct ieee80211_local *local, int q){}static inline void ieee80211_led_assoc(struct ieee80211_local *local,				       bool associated){}static inline void ieee80211_led_init(struct ieee80211_local *local){}static inline void ieee80211_led_exit(struct ieee80211_local *local){}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?