drivers/net/wireless/ath/ath10k/testmode.h

Source file repositories/reference/linux-study-clean/drivers/net/wireless/ath/ath10k/testmode.h

File Facts

System
Linux kernel
Corpus path
drivers/net/wireless/ath/ath10k/testmode.h
Extension
.h
Size
696 bytes
Lines
36
Domain
Driver Families
Bucket
drivers/net
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

#include "core.h"

#ifdef CONFIG_NL80211_TESTMODE

void ath10k_testmode_destroy(struct ath10k *ar);

bool ath10k_tm_event_wmi(struct ath10k *ar, u32 cmd_id, struct sk_buff *skb);
int ath10k_tm_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
		  void *data, int len);

#else

static inline void ath10k_testmode_destroy(struct ath10k *ar)
{
}

static inline bool ath10k_tm_event_wmi(struct ath10k *ar, u32 cmd_id,
				       struct sk_buff *skb)
{
	return false;
}

static inline int ath10k_tm_cmd(struct ieee80211_hw *hw,
				struct ieee80211_vif *vif,
				void *data, int len)
{
	return 0;
}

#endif

Annotation

Implementation Notes