brintos

brintos / linux-shallow public Read only

0
0
Text · 903 B · ef6565b Raw
34 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2#ifndef RTL8180_SA2400_H3#define RTL8180_SA2400_H4 5/*6 * Radio tuning for Philips SA2400 on RTL81807 *8 * Copyright 2007 Andrea Merello <andrea.merello@gmail.com>9 *10 * Code from the BSD driver and the rtl8181 project have been11 * very useful to understand certain things12 *13 * I want to thanks the Authors of such projects and the Ndiswrapper14 * project Authors.15 *16 * A special Big Thanks also is for all people who donated me cards,17 * making possible the creation of the original rtl8180 driver18 * from which this code is derived!19 */20 21#define SA2400_ANTENNA 0x9122#define SA2400_DIG_ANAPARAM_PWR1_ON 0x823#define SA2400_ANA_ANAPARAM_PWR1_ON 0x2824#define SA2400_ANAPARAM_PWR0_ON 0x325 26/* RX sensitivity in dbm */27#define SA2400_MAX_SENS 8528 29#define SA2400_REG4_FIRDAC_SHIFT 730 31extern const struct rtl818x_rf_ops sa2400_rf_ops;32 33#endif /* RTL8180_SA2400_H */34