1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| /* SPDX-License-Identifier: GPL-2.0 */
| #ifndef __WCN_GLB_H__
| #define __WCN_GLB_H__
|
| #include <marlin_platform.h>
| #include "bufring.h"
| #include "wcn_parn_parser.h"
| #include "wcn_txrx.h"
| #include "wcn_log.h"
|
| #ifndef CONFIG_CHECK_DRIVER_BY_CHIPID
| #ifdef CONFIG_UWE5621
| #include "uwe5621_glb.h"
| #endif
|
| #ifdef CONFIG_UWE5622
| #include "uwe5622_glb.h"
| #endif
|
| #ifdef CONFIG_UWE5623
| #include "uwe5623_glb.h"
| #endif
|
| #else
| #include "uwe562x_glb.h"
| #endif
|
| #include "wcn_dump.h"
| #include "loopcheck.h"
| #include "rdc_debug.h"
|
| #endif
|
|