| /linux/drivers/net/wireless/marvell/mwifiex/ |
| H A D | 11h.c | 198 struct mwifiex_ie_types_chan_rpt_data *rpt; in mwifiex_11h_handle_chanrpt_ready() local 212 rpt = (void *)&rpt_event->tlvbuf; in mwifiex_11h_handle_chanrpt_ready() 213 tlv_len = le16_to_cpu(rpt->header.len); in mwifiex_11h_handle_chanrpt_ready() 215 switch (le16_to_cpu(rpt->header.type)) { in mwifiex_11h_handle_chanrpt_ready() 217 if (rpt->map.radar) { in mwifiex_11h_handle_chanrpt_ready() 232 event_len -= (tlv_len + sizeof(rpt->header)); in mwifiex_11h_handle_chanrpt_ready()
|
| /linux/drivers/iio/adc/ |
| H A D | mt6360-adc.c | 69 u8 rpt[3]; in mt6360_adc_read_channel() local 101 ret = regmap_raw_read(mad->regmap, MT6360_REG_PMUADCRPT1, rpt, sizeof(rpt)); in mt6360_adc_read_channel() 116 if ((rpt[0] & MT6360_RPTCH_MASK) == channel) in mt6360_adc_read_channel() 127 *val = get_unaligned_be16(&rpt[1]); in mt6360_adc_read_channel()
|
| /linux/drivers/net/wireless/realtek/rtw88/ |
| H A D | rtw8814a.c | 1173 struct rtw_jaguar_phy_status_rpt *rpt; in rtw8814a_query_phy_status() local 1182 rpt = (struct rtw_jaguar_phy_status_rpt *)phy_status; in rtw8814a_query_phy_status() 1187 lna = le32_get_bits(rpt->w1, RTW_JGRPHY_W1_AGC_RPT_LNA_IDX); in rtw8814a_query_phy_status() 1188 vga = le32_get_bits(rpt->w1, RTW_JGRPHY_W1_AGC_RPT_VGA_IDX); in rtw8814a_query_phy_status() 1197 gain[RF_PATH_A] = le32_get_bits(rpt->w0, RTW_JGRPHY_W0_GAIN_A); in rtw8814a_query_phy_status() 1198 gain[RF_PATH_B] = le32_get_bits(rpt->w0, RTW_JGRPHY_W0_GAIN_B); in rtw8814a_query_phy_status() 1199 gain[RF_PATH_C] = le32_get_bits(rpt->w5, RTW_JGRPHY_W5_GAIN_C); in rtw8814a_query_phy_status() 1200 gain[RF_PATH_D] = le32_get_bits(rpt->w6, RTW_JGRPHY_W6_GAIN_D); in rtw8814a_query_phy_status() 1202 snr[RF_PATH_A] = le32_get_bits(rpt->w3, RTW_JGRPHY_W3_RXSNR_A); in rtw8814a_query_phy_status() 1203 snr[RF_PATH_B] = le32_get_bits(rpt->w4, RTW_JGRPHY_W4_RXSNR_B); in rtw8814a_query_phy_status() [all …]
|
| H A D | rtw88xxa.c | 1523 struct rtw_jaguar_phy_status_rpt *rpt; in rtw88xxa_query_phy_status() local 1529 rpt = (struct rtw_jaguar_phy_status_rpt *)phy_status; in rtw88xxa_query_phy_status() 1532 lna_idx = le32_get_bits(rpt->w1, RTW_JGRPHY_W1_AGC_RPT_LNA_IDX); in rtw88xxa_query_phy_status() 1533 vga_idx = le32_get_bits(rpt->w1, RTW_JGRPHY_W1_AGC_RPT_VGA_IDX); in rtw88xxa_query_phy_status() 1543 gain[RF_PATH_A] = le32_get_bits(rpt->w0, RTW_JGRPHY_W0_GAIN_A); in rtw88xxa_query_phy_status() 1544 gain[RF_PATH_B] = le32_get_bits(rpt->w0, RTW_JGRPHY_W0_GAIN_B); in rtw88xxa_query_phy_status()
|
| /linux/drivers/tty/vt/ |
| H A D | keyboard.c | 294 struct kbd_repeat *rpt = data; in kbd_rate_helper() local 298 if (rpt[0].delay > 0) in kbd_rate_helper() 300 EV_REP, REP_DELAY, rpt[0].delay); in kbd_rate_helper() 301 if (rpt[0].period > 0) in kbd_rate_helper() 303 EV_REP, REP_PERIOD, rpt[0].period); in kbd_rate_helper() 305 rpt[1].delay = dev->rep[REP_DELAY]; in kbd_rate_helper() 306 rpt[1].period = dev->rep[REP_PERIOD]; in kbd_rate_helper() 312 int kbd_rate(struct kbd_repeat *rpt) in kbd_rate() argument 314 struct kbd_repeat data[2] = { *rpt }; in kbd_rate() 317 *rpt = data[1]; /* Copy currently used settings */ in kbd_rate()
|
| /linux/drivers/net/wireless/ath/ath6kl/ |
| H A D | htc_mbox.c | 1592 struct htc_credit_report *rpt, in htc_proc_cred_rpt() argument 1602 for (i = 0; i < n_entries; i++, rpt++) { in htc_proc_cred_rpt() 1603 if (rpt->eid >= ENDPOINT_MAX) { in htc_proc_cred_rpt() 1609 endpoint = &target->endpoint[rpt->eid]; in htc_proc_cred_rpt() 1613 rpt->eid, rpt->credits); in htc_proc_cred_rpt() 1616 endpoint->ep_st.cred_retnd += rpt->credits; in htc_proc_cred_rpt() 1618 if (from_ep == rpt->eid) { in htc_proc_cred_rpt() 1623 endpoint->ep_st.cred_from_rx += rpt->credits; in htc_proc_cred_rpt() 1627 endpoint->ep_st.cred_from_ep0 += rpt->credits; in htc_proc_cred_rpt() 1630 endpoint->ep_st.cred_from_other += rpt->credits; in htc_proc_cred_rpt() [all …]
|
| H A D | htc_pipe.c | 654 struct htc_credit_report *rpt, in htc_process_credit_report() argument 664 for (i = 0; i < num_entries; i++, rpt++) { in htc_process_credit_report() 665 if (rpt->eid >= ENDPOINT_MAX) { in htc_process_credit_report() 671 ep = &target->endpoint[rpt->eid]; in htc_process_credit_report() 672 ep->cred_dist.credits += rpt->credits; in htc_process_credit_report() 680 total_credits += rpt->credits; in htc_process_credit_report()
|
| /linux/drivers/s390/block/ |
| H A D | dasd_eckd.c | 2491 int rpt) in dasd_eckd_build_check_tcw() argument 2511 count = rpt * (fdata->stop_unit - fdata->start_unit + 1); in dasd_eckd_build_check_tcw() 2535 count * sizeof(struct eckd_count), 0, rpt); in dasd_eckd_build_check_tcw() 2575 int enable_pav, struct eckd_count *fmt_buffer, int rpt) in dasd_eckd_build_check() argument 2597 count = rpt * (fdata->stop_unit - fdata->start_unit + 1); in dasd_eckd_build_check() 2668 int rpt; in dasd_eckd_build_format() local 2685 rpt = recs_per_track(&base_priv->rdc_data, 0, fdata->blksize); in dasd_eckd_build_format() 2711 cplength = 2 + (rpt*nr_tracks); in dasd_eckd_build_format() 2715 rpt * nr_tracks * sizeof(struct eckd_count); in dasd_eckd_build_format() 2719 rpt * nr_tracks * sizeof(struct eckd_count); in dasd_eckd_build_format() [all …]
|
| /linux/drivers/net/wireless/realtek/rtw89/ |
| H A D | mac80211.c | 1924 struct rtw89_nhm_report *rpt; in rtw89_ops_get_survey() local 1926 rpt = list_first_entry_or_null(&env->nhm_rpt_list, typeof(*rpt), list); in rtw89_ops_get_survey() 1927 if (!rpt) in rtw89_ops_get_survey() 1931 survey->noise = rpt->noise - MAX_RSSI; in rtw89_ops_get_survey() 1932 survey->channel = rpt->channel; in rtw89_ops_get_survey() 1933 list_del_init(&rpt->list); in rtw89_ops_get_survey()
|
| H A D | phy.c | 1883 u32 poll, rpt; in rtw89_phy_init_bb_afe() local 1944 rpt = rtw89_read32_mask(rtwdev, addr, mask); in rtw89_phy_init_bb_afe() 1945 if (rpt == val) in rtw89_phy_init_bb_afe() 6229 struct rtw89_nhm_report *rpt; in __rtw89_phy_nhm_get_result() local 6236 rpt = &env->nhm_his[hw_band][chan_idx]; in __rtw89_phy_nhm_get_result() 6239 rpt->channel = channel; in __rtw89_phy_nhm_get_result() 6240 rpt->noise = nhm_pwr; in __rtw89_phy_nhm_get_result() 6242 if (list_empty(&rpt->list)) in __rtw89_phy_nhm_get_result() 6243 list_add_tail(&rpt->list, nhm_list); in __rtw89_phy_nhm_get_result()
|
| H A D | fw.c | 10103 struct rtw89_mac_mcc_tsf_rpt *rpt) in rtw89_fw_h2c_mcc_req_tsf() argument 10135 *rpt = *tmp; in rtw89_fw_h2c_mcc_req_tsf() 10429 struct rtw89_mac_mrc_tsf_rpt *rpt) in rtw89_fw_h2c_mrc_req_tsf() argument 10468 *rpt = *tmp; in rtw89_fw_h2c_mrc_req_tsf()
|
| /linux/net/dccp/ |
| H A D | feat.c | |
| /linux/arch/arm64/boot/dts/rockchip/ |
| H A D | rk3399-gru.dtsi | 447 dlg,adc-1bit-rpt = <1>;
|