1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 2 /* Copyright(c) 2022-2023 Realtek Corporation 3 */ 4 5 #ifndef __RTW89_8851B_RFK_H__ 6 #define __RTW89_8851B_RFK_H__ 7 8 #include "core.h" 9 10 void rtw8851b_aack(struct rtw89_dev *rtwdev); 11 void rtw8851b_rck(struct rtw89_dev *rtwdev); 12 void rtw8851b_dack(struct rtw89_dev *rtwdev); 13 void rtw8851b_iqk(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx); 14 void rtw8851b_set_channel_rf(struct rtw89_dev *rtwdev, 15 const struct rtw89_chan *chan, 16 enum rtw89_phy_idx phy_idx); 17 18 #endif 19