mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
37 lines
1.6 KiB
Diff
37 lines
1.6 KiB
Diff
From cf8480d338a1b9156121e5e035e6b9721db4332a Mon Sep 17 00:00:00 2001
|
|
From: Karthikeyan Periyasamy <periyasa@codeaurora.org>
|
|
Date: Mon, 11 Jan 2021 19:49:30 +0200
|
|
Subject: ath11k: remove duplicate function declaration
|
|
|
|
Removed the duplicated peer related function declaration
|
|
from core.h since those functions are already declared in peer.h
|
|
|
|
Founded in code review.
|
|
|
|
Tested-on: IPQ8074 hw2.0 AHB WLAN.HK.2.4.0.1-01492-QCAHKSWPL_SILICONZ-1
|
|
|
|
Signed-off-by: Karthikeyan Periyasamy <periyasa@codeaurora.org>
|
|
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
|
Link: https://lore.kernel.org/r/1608304793-20612-1-git-send-email-periyasa@codeaurora.org
|
|
---
|
|
drivers/net/wireless/ath/ath11k/core.h | 8 --------
|
|
1 file changed, 8 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/core.h
|
|
+++ b/drivers/net/wireless/ath/ath11k/core.h
|
|
@@ -868,14 +868,6 @@ extern const struct service_to_pipe ath1
|
|
extern const struct ce_pipe_config ath11k_target_ce_config_wlan_qca6390[];
|
|
extern const struct service_to_pipe ath11k_target_service_to_ce_map_wlan_qca6390[];
|
|
|
|
-void ath11k_peer_unmap_event(struct ath11k_base *ab, u16 peer_id);
|
|
-void ath11k_peer_map_event(struct ath11k_base *ab, u8 vdev_id, u16 peer_id,
|
|
- u8 *mac_addr, u16 ast_hash);
|
|
-struct ath11k_peer *ath11k_peer_find(struct ath11k_base *ab, int vdev_id,
|
|
- const u8 *addr);
|
|
-struct ath11k_peer *ath11k_peer_find_by_addr(struct ath11k_base *ab,
|
|
- const u8 *addr);
|
|
-struct ath11k_peer *ath11k_peer_find_by_id(struct ath11k_base *ab, int peer_id);
|
|
int ath11k_core_qmi_firmware_ready(struct ath11k_base *ab);
|
|
int ath11k_core_pre_init(struct ath11k_base *ab);
|
|
int ath11k_core_init(struct ath11k_base *ath11k);
|