Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/ALFA-W1F1/RTL8814AU/core/rtw_btcoex_wifionly.c
1307 views
1
/******************************************************************************
2
*
3
* Copyright(c) 2013 - 2017 Realtek Corporation.
4
*
5
* This program is free software; you can redistribute it and/or modify it
6
* under the terms of version 2 of the GNU General Public License as
7
* published by the Free Software Foundation.
8
*
9
* This program is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12
* more details.
13
*
14
*****************************************************************************/
15
#include <drv_types.h>
16
#include <hal_btcoex_wifionly.h>
17
#include <hal_data.h>
18
19
void rtw_btcoex_wifionly_switchband_notify(PADAPTER padapter)
20
{
21
hal_btcoex_wifionly_switchband_notify(padapter);
22
}
23
24
void rtw_btcoex_wifionly_scan_notify(PADAPTER padapter)
25
{
26
hal_btcoex_wifionly_scan_notify(padapter);
27
}
28
29
void rtw_btcoex_wifionly_connect_notify(PADAPTER padapter)
30
{
31
hal_btcoex_wifionly_connect_notify(padapter);
32
}
33
34
void rtw_btcoex_wifionly_hw_config(PADAPTER padapter)
35
{
36
hal_btcoex_wifionly_hw_config(padapter);
37
}
38
39
void rtw_btcoex_wifionly_initialize(PADAPTER padapter)
40
{
41
hal_btcoex_wifionly_initlizevariables(padapter);
42
}
43
44
void rtw_btcoex_wifionly_AntInfoSetting(PADAPTER padapter)
45
{
46
hal_btcoex_wifionly_AntInfoSetting(padapter);
47
}
48
49