thermal/drivers/hisi: Set the thermal zone private data to the sensor pointer
[linux/fpc-iii.git] / drivers / staging / vt6656 / rf.h
blobf77866a9c177ad9efc1468c179d0a3a6c778fd9e
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
4 * All rights reserved.
6 * File: rf.h
8 * Purpose:
10 * Author: Jerry Chen
12 * Date: Feb. 19, 2004
16 #ifndef __RF_H__
17 #define __RF_H__
19 #include "device.h"
21 /* Baseband RF pair definition in eeprom (Bits 6..0) */
22 #define RF_RFMD2959 0x01
23 #define RF_MAXIMAG 0x02
24 #define RF_AL2230 0x03
25 #define RF_GCT5103 0x04
26 #define RF_UW2451 0x05
27 #define RF_MAXIMG 0x06
28 #define RF_MAXIM2829 0x07
29 #define RF_UW2452 0x08
30 #define RF_VT3226 0x09
31 #define RF_AIROHA7230 0x0a
32 #define RF_UW2453 0x0b
33 #define RF_VT3226D0 0x0c /* RobertYu:20051114 */
34 #define RF_VT3342A0 0x0d /* RobertYu:20060609 */
35 #define RF_AL2230S 0x0e
37 #define RF_EMU 0x80
38 #define RF_MASK 0x7F
40 #define VNT_RF_MAX_POWER 0x3f
41 #define VNT_RF_REG_LEN 0x17 /* 24 bit length */
43 int vnt_rf_write_embedded(struct vnt_private *priv, u32 data);
44 int vnt_rf_setpower(struct vnt_private *priv, u32 rate, u32 channel);
45 int vnt_rf_set_txpower(struct vnt_private *priv, u8 power, u32 rate);
46 void vnt_rf_rssi_to_dbm(struct vnt_private *priv, u8 rssi, long *dbm);
47 void vnt_rf_table_download(struct vnt_private *priv);
49 #endif /* __RF_H__ */