File: tables.h

package info (click to toggle)
linux 5.10.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,182,916 kB
  • sloc: ansic: 19,488,074; asm: 263,676; sh: 73,873; makefile: 44,685; perl: 34,640; python: 32,386; cpp: 6,070; yacc: 4,755; lex: 2,742; awk: 1,214; ruby: 25; sed: 5
file content (35 lines) | stat: -rw-r--r-- 1,145 bytes parent folder | download | duplicates (27)
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
33
34
35
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef B43_TABLES_H_
#define B43_TABLES_H_

#define B43_TAB_ROTOR_SIZE	53
extern const u32 b43_tab_rotor[];
#define B43_TAB_RETARD_SIZE	53
extern const u32 b43_tab_retard[];
#define B43_TAB_FINEFREQA_SIZE	256
extern const u16 b43_tab_finefreqa[];
#define B43_TAB_FINEFREQG_SIZE	256
extern const u16 b43_tab_finefreqg[];
#define B43_TAB_NOISEA2_SIZE	8
extern const u16 b43_tab_noisea2[];
#define B43_TAB_NOISEA3_SIZE	8
extern const u16 b43_tab_noisea3[];
#define B43_TAB_NOISEG1_SIZE	8
extern const u16 b43_tab_noiseg1[];
#define B43_TAB_NOISEG2_SIZE	8
extern const u16 b43_tab_noiseg2[];
#define B43_TAB_NOISESCALE_SIZE	27
extern const u16 b43_tab_noisescalea2[];
extern const u16 b43_tab_noisescalea3[];
extern const u16 b43_tab_noisescaleg1[];
extern const u16 b43_tab_noisescaleg2[];
extern const u16 b43_tab_noisescaleg3[];
#define B43_TAB_SIGMASQR_SIZE	53
extern const u16 b43_tab_sigmasqr1[];
extern const u16 b43_tab_sigmasqr2[];
#define B43_TAB_RSSIAGC1_SIZE	16
extern const u16 b43_tab_rssiagc1[];
#define B43_TAB_RSSIAGC2_SIZE	48
extern const u16 b43_tab_rssiagc2[];

#endif /* B43_TABLES_H_ */