mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-29 13:57:58 -04:00
Update Qualcomm copyrights per current legal guidance. Assisted-by: Claude:claude-sonnet-4-6 Link: https://patch.msgid.link/20260608-ath12k-copyright-v2-1-37504d70b03c@oss.qualcomm.com Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
41 lines
1022 B
C
41 lines
1022 B
C
/* SPDX-License-Identifier: BSD-3-Clause-Clear */
|
|
/*
|
|
* Copyright (c) 2018-2021 The Linux Foundation. All rights reserved.
|
|
* Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
*/
|
|
|
|
#include "core.h"
|
|
#include "hif.h"
|
|
|
|
#ifdef CONFIG_NL80211_TESTMODE
|
|
|
|
void ath12k_tm_wmi_event_unsegmented(struct ath12k_base *ab, u32 cmd_id,
|
|
struct sk_buff *skb);
|
|
void ath12k_tm_process_event(struct ath12k_base *ab, u32 cmd_id,
|
|
const struct ath12k_wmi_ftm_event *ftm_msg,
|
|
u16 length);
|
|
int ath12k_tm_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
|
void *data, int len);
|
|
|
|
#else
|
|
|
|
static inline void ath12k_tm_wmi_event_unsegmented(struct ath12k_base *ab, u32 cmd_id,
|
|
struct sk_buff *skb)
|
|
{
|
|
}
|
|
|
|
static inline void ath12k_tm_process_event(struct ath12k_base *ab, u32 cmd_id,
|
|
const struct ath12k_wmi_ftm_event *msg,
|
|
u16 length)
|
|
{
|
|
}
|
|
|
|
static inline int ath12k_tm_cmd(struct ieee80211_hw *hw,
|
|
struct ieee80211_vif *vif,
|
|
void *data, int len)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif
|