Contributors: 5
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Kalle Valo |
76 |
78.35% |
1 |
16.67% |
Govindaraj Saminathan |
12 |
12.37% |
2 |
33.33% |
Carl Huang |
5 |
5.15% |
1 |
16.67% |
Manikanta Pubbisetty |
2 |
2.06% |
1 |
16.67% |
Baochen Qiang |
2 |
2.06% |
1 |
16.67% |
Total |
97 |
|
6 |
|
/* SPDX-License-Identifier: BSD-3-Clause-Clear */
/*
* Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
* Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
*/
#include "core.h"
#ifdef CONFIG_NL80211_TESTMODE
void ath11k_tm_wmi_event(struct ath11k_base *ab, u32 cmd_id, struct sk_buff *skb);
int ath11k_tm_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
void *data, int len);
#else
static inline void ath11k_tm_wmi_event(struct ath11k_base *ab, u32 cmd_id,
struct sk_buff *skb)
{
}
static inline int ath11k_tm_cmd(struct ieee80211_hw *hw,
struct ieee80211_vif *vif,
void *data, int len)
{
return 0;
}
#endif