/linux/drivers/media/test-drivers/vicodec/ |
H A D | codec-v4l2-fwht.c | 94 static int prepare_raw_frame(struct fwht_raw_frame *rf, in prepare_raw_frame() argument 98 rf->luma = buf; in prepare_raw_frame() 99 rf->width_div = info->width_div; in prepare_raw_frame() 100 rf->height_div = info->height_div; in prepare_raw_frame() 101 rf->luma_alpha_step = info->luma_alpha_step; in prepare_raw_frame() 102 rf->chroma_step = info->chroma_step; in prepare_raw_frame() 103 rf->alpha = NULL; in prepare_raw_frame() 104 rf->components_num = info->components_num; in prepare_raw_frame() 111 rf->luma = NULL; in prepare_raw_frame() 112 rf->cb = NULL; in prepare_raw_frame() [all …]
|
/linux/drivers/net/wireless/zydas/zd1211rw/ |
H A D | zd_rf.c | 42 void zd_rf_init(struct zd_rf *rf) in zd_rf_init() argument 44 memset(rf, 0, sizeof(*rf)); in zd_rf_init() 46 /* default to update channel integration, as almost all RF's do want in zd_rf_init() 48 rf->update_channel_int = 1; in zd_rf_init() 51 void zd_rf_clear(struct zd_rf *rf) in zd_rf_clear() argument 53 if (rf->clear) in zd_rf_clear() 54 rf->clear(rf); in zd_rf_clear() 55 ZD_MEMCLEAR(rf, sizeof(*rf)); in zd_rf_clear() 58 int zd_rf_init_hw(struct zd_rf *rf, u8 type) in zd_rf_init_hw() argument 62 struct zd_chip *chip = zd_rf_to_chip(rf); in zd_rf_init_hw() [all …]
|
H A D | zd_rf.h | 28 /* Provides functions of the RF transceiver. */ 47 * be done for all RF's, but a bug in their code prevents but their 51 /* private RF driver data */ 54 /* RF-specific functions */ 55 int (*init_hw)(struct zd_rf *rf); 56 int (*set_channel)(struct zd_rf *rf, u8 channel); 57 int (*switch_radio_on)(struct zd_rf *rf); 58 int (*switch_radio_off)(struct zd_rf *rf); 59 int (*patch_6m_band_edge)(struct zd_rf *rf, u8 channel); 60 void (*clear)(struct zd_rf *rf); [all …]
|
H A D | zd_rf_al7230b.c | 87 static int zd1211_al7230b_init_hw(struct zd_rf *rf) in zd1211_al7230b_init_hw() argument 90 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211_al7230b_init_hw() 192 static int zd1211b_al7230b_init_hw(struct zd_rf *rf) in zd1211b_al7230b_init_hw() argument 195 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211b_al7230b_init_hw() 313 static int zd1211_al7230b_set_channel(struct zd_rf *rf, u8 channel) in zd1211_al7230b_set_channel() argument 317 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211_al7230b_set_channel() 360 static int zd1211b_al7230b_set_channel(struct zd_rf *rf, u8 channel) in zd1211b_al7230b_set_channel() argument 364 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211b_al7230b_set_channel() 407 static int zd1211_al7230b_switch_radio_on(struct zd_rf *rf) in zd1211_al7230b_switch_radio_on() argument 409 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211_al7230b_switch_radio_on() [all …]
|
H A D | zd_rf_al2230.c | 14 #define IS_AL2230S(chip) ((chip)->al2230s_bit || (chip)->rf.type == AL2230S_RF) 92 static int zd1211_al2230_init_hw(struct zd_rf *rf) in zd1211_al2230_init_hw() argument 95 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211_al2230_init_hw() 205 static int zd1211b_al2230_init_hw(struct zd_rf *rf) in zd1211b_al2230_init_hw() argument 208 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211b_al2230_init_hw() 347 static int zd1211_al2230_set_channel(struct zd_rf *rf, u8 channel) in zd1211_al2230_set_channel() argument 351 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211_al2230_set_channel() 363 static int zd1211b_al2230_set_channel(struct zd_rf *rf, u8 channel) in zd1211b_al2230_set_channel() argument 367 struct zd_chip *chip = zd_rf_to_chip(rf); in zd1211b_al2230_set_channel() 381 static int zd1211_al2230_switch_radio_on(struct zd_rf *rf) in zd1211_al2230_switch_radio_on() argument [all …]
|
H A D | zd_rf_uw2453.c | 15 /* This RF programming code is based upon the code found in v2.16.0.0 of the 16 * ZyDAS vendor driver. Unlike other RF's, Ubec publish full technical specs 17 * for this RF on their website, so we're able to understand more than 27 * We configure the RF to produce an interrupt when the PLL is locked onto 233 /* RF-specific structure */ 240 #define UW2453_PRIV(rf) ((struct uw2453_priv *) (rf)->priv) argument 296 static int uw2453_init_hw(struct zd_rf *rf) in uw2453_init_hw() argument 301 struct zd_chip *chip = zd_rf_to_chip(rf); in uw2453_init_hw() 423 UW2453_PRIV(rf)->config = found_config + 1; in uw2453_init_hw() 428 static int uw2453_set_channel(struct zd_rf *rf, u8 channel) in uw2453_set_channel() argument [all …]
|
H A D | zd_rf_rf2959.c | 136 static int rf2959_init_hw(struct zd_rf *rf) in rf2959_init_hw() argument 139 struct zd_chip *chip = zd_rf_to_chip(rf); in rf2959_init_hw() 218 static int rf2959_set_channel(struct zd_rf *rf, u8 channel) in rf2959_set_channel() argument 222 struct zd_chip *chip = zd_rf_to_chip(rf); in rf2959_set_channel() 232 static int rf2959_switch_radio_on(struct zd_rf *rf) in rf2959_switch_radio_on() argument 238 struct zd_chip *chip = zd_rf_to_chip(rf); in rf2959_switch_radio_on() 243 static int rf2959_switch_radio_off(struct zd_rf *rf) in rf2959_switch_radio_off() argument 249 struct zd_chip *chip = zd_rf_to_chip(rf); in rf2959_switch_radio_off() 254 int zd_rf_init_rf2959(struct zd_rf *rf) in zd_rf_init_rf2959() argument 256 struct zd_chip *chip = zd_rf_to_chip(rf); in zd_rf_init_rf2959() [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
H A D | rf.c | 8 #include "rf.h" 100 "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n", tmpval, in rtl8723e_phy_rf6052_set_cck_txpower() 110 "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n", tmpval, in rtl8723e_phy_rf6052_set_cck_txpower() 117 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n", tmpval, in rtl8723e_phy_rf6052_set_cck_txpower() 124 "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n", tmpval, in rtl8723e_phy_rf6052_set_cck_txpower() 148 " [OFDM power base index rf(%c) = 0x%x]\n", in rtl8723e_phy_get_power_base() 165 " [MCS power base index rf(%c) = 0x%x]\n", in rtl8723e_phy_get_power_base() 180 u32 writeval, customer_limit, rf; in get_txpower_writeval_by_reg() local 182 for (rf = 0; rf < 2; rf++) { in get_txpower_writeval_by_reg() 189 (rf ? 8 : 0)] in get_txpower_writeval_by_reg() [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ |
H A D | rf.c | 8 #include "rf.h" 96 "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n", in rtl92ce_phy_rf6052_set_cck_txpower() 106 "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n", in rtl92ce_phy_rf6052_set_cck_txpower() 113 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n", in rtl92ce_phy_rf6052_set_cck_txpower() 120 "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n", in rtl92ce_phy_rf6052_set_cck_txpower() 144 " [OFDM power base index rf(%c) = 0x%x]\n", in rtl92c_phy_get_power_base() 160 " [MCS power base index rf(%c) = 0x%x]\n", in rtl92c_phy_get_power_base() 175 u32 writeval, customer_limit, rf; in _rtl92c_get_txpower_writeval_by_regulatory() local 177 for (rf = 0; rf < 2; rf++) { in _rtl92c_get_txpower_writeval_by_regulatory() 183 (rf ? 8 : 0)] in _rtl92c_get_txpower_writeval_by_regulatory() [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
H A D | rf.c | 8 #include "rf.h" 107 "CCK PWR 1~11M (rf-A) = 0x%x (reg 0x%x)\n", tmpval, in rtl8821ae_phy_rf6052_set_cck_txpower() 114 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n", tmpval, in rtl8821ae_phy_rf6052_set_cck_txpower() 136 " [OFDM power base index rf(%c) = 0x%x]\n", in rtl8821ae_phy_get_power_base() 153 " [MCS power base index rf(%c) = 0x%x]\n", in rtl8821ae_phy_get_power_base() 168 u32 writeval, customer_limit, rf; in get_txpower_writeval_by_regulatory() local 170 for (rf = 0; rf < 2; rf++) { in get_txpower_writeval_by_regulatory() 177 (rf ? 8 : 0)] in get_txpower_writeval_by_regulatory() 178 + ((index < 2) ? powerbase0[rf] : powerbase1[rf]); in get_txpower_writeval_by_regulatory() 182 ((rf == 0) ? 'A' : 'B'), writeval); in get_txpower_writeval_by_regulatory() [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
H A D | rf.c | 8 #include "rf.h" 107 "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n", tmpval, in rtl8723be_phy_rf6052_set_cck_txpower() 117 "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n", tmpval, in rtl8723be_phy_rf6052_set_cck_txpower() 124 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n", tmpval, in rtl8723be_phy_rf6052_set_cck_txpower() 131 "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n", tmpval, in rtl8723be_phy_rf6052_set_cck_txpower() 154 " [OFDM power base index rf(%c) = 0x%x]\n", in rtl8723be_phy_get_power_base() 171 " [MCS power base index rf(%c) = 0x%x]\n", in rtl8723be_phy_get_power_base() 187 u32 writeval, customer_limit, rf; in _rtl8723be_get_txpower_writeval_by_regulatory() local 189 for (rf = 0; rf < 2; rf++) { in _rtl8723be_get_txpower_writeval_by_regulatory() 196 (rf ? 8 : 0)] in _rtl8723be_get_txpower_writeval_by_regulatory() [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
H A D | rf.c | 8 #include "rf.h" 108 "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n", tmpval, in rtl88e_phy_rf6052_set_cck_txpower() 118 "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n", tmpval, in rtl88e_phy_rf6052_set_cck_txpower() 125 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n", tmpval, in rtl88e_phy_rf6052_set_cck_txpower() 132 "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n", tmpval, in rtl88e_phy_rf6052_set_cck_txpower() 154 " [OFDM power base index rf(%c) = 0x%x]\n", in rtl88e_phy_get_power_base() 171 " [MCS power base index rf(%c) = 0x%x]\n", in rtl88e_phy_get_power_base() 186 u32 writeval, customer_limit, rf; in _rtl88e_get_txpower_writeval_by_regulatory() local 188 for (rf = 0; rf < 2; rf++) { in _rtl88e_get_txpower_writeval_by_regulatory() 195 [chnlgroup][index + (rf ? 8 : 0)] in _rtl88e_get_txpower_writeval_by_regulatory() [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/ |
H A D | rf.c | 8 #include "rf.h" 97 "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n", in rtl92cu_phy_rf6052_set_cck_txpower() 105 "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n", in rtl92cu_phy_rf6052_set_cck_txpower() 110 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n", in rtl92cu_phy_rf6052_set_cck_txpower() 115 "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n", in rtl92cu_phy_rf6052_set_cck_txpower() 138 " [OFDM power base index rf(%c) = 0x%x]\n", in rtl92c_phy_get_power_base() 151 " [MCS power base index rf(%c) = 0x%x]\n", in rtl92c_phy_get_power_base() 166 u32 writeval, customer_limit, rf; in _rtl92c_get_txpower_writeval_by_regulatory() local 168 for (rf = 0; rf < 2; rf++) { in _rtl92c_get_txpower_writeval_by_regulatory() 173 [chnlgroup][index + (rf ? 8 : 0)] in _rtl92c_get_txpower_writeval_by_regulatory() [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192d/ |
H A D | rf_common.c | 26 "20M RF 0x18 = 0x%x\n", in rtl92d_phy_rf6052_set_bandwidth() 39 "40M RF 0x18 = 0x%x\n", in rtl92d_phy_rf6052_set_bandwidth() 104 "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n", in rtl92d_phy_rf6052_set_cck_txpower() 109 "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n", in rtl92d_phy_rf6052_set_cck_txpower() 114 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n", in rtl92d_phy_rf6052_set_cck_txpower() 119 "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n", in rtl92d_phy_rf6052_set_cck_txpower() 143 " [OFDM power base index rf(%c) = 0x%x]\n", in _rtl92d_phy_get_power_base() 157 " [MCS power base index rf(%c) = 0x%x]\n", in _rtl92d_phy_get_power_base() 163 u8 index, u8 rf, u8 pwr_diff_limit[4]) in _rtl92d_get_pwr_diff_limit() argument 172 mcs_offset = rtlphy->mcs_offset[0][index + (rf ? 8 : 0)]; in _rtl92d_get_pwr_diff_limit() [all …]
|
/linux/Documentation/userspace-api/media/v4l/ |
H A D | ext-ctrls-rf-tuner.rst | 6 RF Tuner Control Reference 9 The RF Tuner (RF_TUNER) class includes controls for common features of 10 devices having RF tuner. 12 In this context, RF tuner is radio receiver circuit between antenna and 13 demodulator. It receives radio frequency (RF) from the antenna and 22 For more information about RF tuners see 24 and `RF front end <http://en.wikipedia.org/wiki/RF_front_end>`__ 59 The RF amplifier is the very first amplifier on the receiver signal 61 LNA gain and the RF gain in this document is that the LNA gain is 62 integrated in the tuner chip while the RF gain is a separate chip. [all …]
|
/linux/tools/memory-model/ |
H A D | lock.cat | 109 (* Generate all rf relations for LF events *) 111 let rf-lf = rfe-lf | rfi-lf 118 let possible-rf-ru e = (((UL * {e}) & po-loc) \ 122 (* Compute set of sets of possible rf edges for RU events *) 123 let all-possible-rf-ru = 124 (* Convert the possible-rf-ru relation for e to a set of single edges *) 125 let set-of-singleton-rf-ru e = 126 map pair-to-relation (possible-rf-ru e) 128 in map set-of-singleton-rf-ru RU 130 (* Generate all rf relations for RU events *) [all …]
|
/linux/drivers/net/wireless/broadcom/b43/ |
H A D | radio_2055.h | 67 #define B2055_RF_PLLMOD0 0x3B /* RF PLL MOD0 */ 68 #define B2055_RF_PLLMOD1 0x3C /* RF PLL MOD1 */ 69 #define B2055_RF_MMDIDAC1 0x3D /* RF MMD IDAC 1 */ 70 #define B2055_RF_MMDIDAC0 0x3E /* RF MMD IDAC 0 */ 71 #define B2055_RF_MMDSP 0x3F /* RF MMD spare */ 92 #define B2055_PLL_RFVTH 0x54 /* PLL RF VTH */ 110 #define B2055_C1_RX_RFSPC1 0x66 /* Core 1 RX RF SPC1 */ 111 #define B2055_C1_RX_RFR1 0x67 /* Core 1 RX RF reg 1 */ 112 #define B2055_C1_RX_RFR2 0x68 /* Core 1 RX RF reg 2 */ 113 #define B2055_C1_RX_RFRCAL 0x69 /* Core 1 RX RF RCAL */ [all …]
|
/linux/arch/arm64/crypto/ |
H A D | sm3-neon-core.S | 46 #define rf w8 macro 358 ldp re, rf, [RSTATE, #16] 401 R1(ra, rb, rc, rd, re, rf, rg, rh, k_even, KL, 0, 0, IW, _, 0) 402 R1(rd, ra, rb, rc, rh, re, rf, rg, k_odd, _, 1, 1, IW, _, 0) 403 R1(rc, rd, ra, rb, rg, rh, re, rf, k_even, KL, 2, 2, IW, _, 0) 404 R1(rb, rc, rd, ra, rf, rg, rh, re, k_odd, _, 3, 3, IW, _, 0) 407 R1(ra, rb, rc, rd, re, rf, rg, rh, k_even, KL, 4, 0, IW, _, 0) 408 R1(rd, ra, rb, rc, rh, re, rf, rg, k_odd, _, 5, 1, IW, _, 0) 409 R1(rc, rd, ra, rb, rg, rh, re, rf, k_even, KL, 6, 2, IW, SCHED_W_W0W1W2W3W4W5_1, 12) 410 R1(rb, rc, rd, ra, rf, rg, rh, re, k_odd, _, 7, 3, IW, SCHED_W_W0W1W2W3W4W5_2, 12) [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
H A D | hw.c | 229 rpwm_val = (FW_PS_STATE_ALL_ON_92E | FW_PS_ACK);/* RF on */ in _rtl92ee_fwlps_leave() 237 rpwm_val = FW_PS_STATE_ALL_ON_92E; /* RF on */ in _rtl92ee_fwlps_leave() 256 rpwm_val = FW_PS_STATE_RF_OFF_LOW_PWR; /* RF off */ in _rtl92ee_fwlps_enter() 264 rpwm_val = FW_PS_STATE_RF_OFF_92E; /* RF off */ in _rtl92ee_fwlps_enter() 1245 /* In MAC power on state, BB and RF maybe in ON state, in _rtl8192ee_reset_pcie_interface_dma() 1444 "Chip RF Type: %s\n", (rtlphy->rf_type == RF_2T2R) ? in _rtl92ee_read_chip_version() 1618 /* turn off RF */ in _rtl92ee_poweroff_adapter() 1788 u32 rf, addr = EEPROM_TX_PWR_INX, group, i = 0; in _rtl8192ee_read_power_value_fromprom() local 1799 for (rf = 0 ; rf < MAX_RF_PATH ; rf++) { in _rtl8192ee_read_power_value_fromprom() 1802 pwr2g->index_cck_base[rf][group] = 0x2D; in _rtl8192ee_read_power_value_fromprom() [all …]
|
/linux/drivers/staging/rtl8723bs/include/ |
H A D | Hal8192CPhyReg.h | 13 * 2. Define RF register map 15 * 4. RF reg bit mask. 16 * 5. Other BB/RF relative definition. 44 /* 3. RF register 0x00-2E */ 45 /* 4. Bit Mask for BB/RF register */ 46 /* 5. Other definition for BB/RF R/W */ 52 #define rFPGA0_RFMOD 0x800 /* RF mode & CCK TxSC RF BW Setting?? */ 54 #define rFPGA0_XA_HSSIParameter1 0x820 /* RF 3 wire register */ 70 #define rFPGA0_XA_RFInterfaceOE 0x860 /* RF Channel switch */ 75 #define rFPGA0_XAB_RFInterfaceSW 0x870 /* RF Interface Software Control */ [all …]
|
/linux/drivers/thermal/qcom/ |
H A D | tsens.c | 339 ret = regmap_field_read(priv->rf[field], &temp); in tsens_hw_to_mC() 394 regmap_field_write(priv->rf[index], enable ? 0 : 1); in tsens_set_interrupt_v1() 425 regmap_field_write(priv->rf[index_mask], 0); in tsens_set_interrupt_v2() 427 regmap_field_write(priv->rf[index_mask], 1); in tsens_set_interrupt_v2() 428 regmap_field_write(priv->rf[index_clear], 1); in tsens_set_interrupt_v2() 429 regmap_field_write(priv->rf[index_clear], 0); in tsens_set_interrupt_v2() 470 ret = regmap_field_read(priv->rf[UPPER_STATUS_0 + hw_id], &d->up_viol); in tsens_threshold_violated() 473 ret = regmap_field_read(priv->rf[LOWER_STATUS_0 + hw_id], &d->low_viol); in tsens_threshold_violated() 478 ret = regmap_field_read(priv->rf[CRITICAL_STATUS_0 + hw_id], in tsens_threshold_violated() 496 ret = regmap_field_read(priv->rf[UP_INT_CLEAR_0 + hw_id], &d->up_irq_clear); in tsens_read_irq_state() [all …]
|
/linux/drivers/media/tuners/ |
H A D | tda18218_priv.h | 57 #define R2C_RFCAL1 0x2c /* RF CAL byte 1 */ 58 #define R2D_RFCAL2 0x2d /* RF CAL byte 2 */ 59 #define R2E_RFCAL3 0x2e /* RF CAL byte 3 */ 60 #define R2F_RFCAL4 0x2f /* RF CAL byte 4 */ 61 #define R30_RFCAL5 0x30 /* RF CAL byte 5 */ 62 #define R31_RFCAL6 0x31 /* RF CAL byte 6 */ 63 #define R32_RFCAL7 0x32 /* RF CAL byte 7 */ 64 #define R33_RFCAL8 0x33 /* RF CAL byte 8 */ 65 #define R34_RFCAL9 0x34 /* RF CAL byte 9 */ 66 #define R35_RFCAL10 0x35 /* RF CAL byte 10 */ [all …]
|
/linux/arch/parisc/kernel/ |
H A D | signal32.c | 36 restore_sigcontext32(struct compat_sigcontext __user *sc, struct compat_regfile __user * rf, in restore_sigcontext32() argument 47 DBG(2,"restore_sigcontext32: sc = 0x%p, rf = 0x%p, regs = 0x%p\n", sc, rf, regs); in restore_sigcontext32() 53 err |= __get_user(compat_regt,&rf->rf_gr[regn]); in restore_sigcontext32() 67 err |= __get_user(compat_regt, &rf->rf_iaoq[0]); in restore_sigcontext32() 75 err |= __get_user(compat_regt, &rf->rf_iaoq[1]); in restore_sigcontext32() 85 err |= __get_user(compat_regt, &rf->rf_iasq[0]); in restore_sigcontext32() 91 err |= __get_user(compat_regt, &rf->rf_iasq[1]); in restore_sigcontext32() 99 err |= __get_user(compat_regt, &rf->rf_sar); in restore_sigcontext32() 115 setup_sigcontext32(struct compat_sigcontext __user *sc, struct compat_regfile __user * rf, in setup_sigcontext32() argument 141 err |= __put_user(compat_reg, &rf->rf_iaoq[0]); in setup_sigcontext32() [all …]
|
/linux/drivers/net/wireless/intel/iwlwifi/ |
H A D | Makefile | 18 # combined MAC/RF configurations 27 # RF configurations 28 iwlwifi-$(CONFIG_IWLMVM) += cfg/rf-jf.o cfg/rf-hr.o cfg/rf-gf.o 29 iwlwifi-$(CONFIG_IWLMLD) += cfg/rf-fm.o cfg/rf-wh.o cfg/rf-pe.o
|
/linux/include/net/nfc/ |
H A D | digital.h | 22 * RF technology values passed as param argument to in_configure_hw and 94 * @in_configure_hw: Hardware configuration for RF technology and communication 96 * @in_send_cmd: Initiator mode data exchange using RF technology and framing 103 * @tg_configure_hw: Hardware configuration for RF technology and communication 105 * @tg_send_cmd: Target mode data exchange using RF technology and framing 114 * automatically detects the RF technology and executes the anti-collision 116 * mdaa_params structure contains SENS_RES, NFCID1, and SEL_RES for 106A RF 118 * the NFC-DEP ATR_REQ command through cb. The digital stack deducts the RF 123 * device automatically detects the RF technology. What the actual 124 * RF technology is can be retrieved by calling @tg_get_rf_tech. [all …]
|