• Home
  • Raw
  • Download

Lines Matching refs:values

105 int zd_ioread32v_locked(struct zd_chip *chip, u32 *values, const zd_addr_t *addr,  in zd_ioread32v_locked()  argument
138 values[i] = (v16[j] << 16) | v16[j+1]; in zd_ioread32v_locked()
309 u32 *values, unsigned int count) in zd_ioread32v() argument
314 r = zd_ioread32v_locked(chip, values, addresses, count); in zd_ioread32v()
441 static int read_values(struct zd_chip *chip, u8 *values, size_t count, in read_values() argument
456 values[i++] = v; in read_values()
457 values[i++] = v >> 8; in read_values()
458 values[i++] = v >> 16; in read_values()
459 values[i++] = v >> 24; in read_values()
463 values[i] = v >> (8*(i%3)); in read_values()
856 u32 values[3]; in get_aw_pt_bi() local
858 r = zd_ioread32v_locked(chip, values, (const zd_addr_t *)aw_pt_bi_addr, in get_aw_pt_bi()
865 s->atim_wnd_period = values[0]; in get_aw_pt_bi()
866 s->pre_tbtt = values[1]; in get_aw_pt_bi()
867 s->beacon_interval = values[2]; in get_aw_pt_bi()
1007 u16 values[4]; in dump_fw_registers() local
1009 r = zd_ioread16v_locked(chip, values, (const zd_addr_t*)addr, in dump_fw_registers()
1017 dev_dbg_f(zd_chip_dev(chip), "FW_FIRMWARE_VER %#06hx\n", values[0]); in dump_fw_registers()
1018 dev_dbg_f(zd_chip_dev(chip), "FW_USB_SPEED %#06hx\n", values[1]); in dump_fw_registers()
1019 dev_dbg_f(zd_chip_dev(chip), "FW_FIX_TX_RATE %#06hx\n", values[2]); in dump_fw_registers()
1020 dev_dbg_f(zd_chip_dev(chip), "FW_LINK_STATUS %#06hx\n", values[3]); in dump_fw_registers()
1486 const u32* values, unsigned int count, u8 bits) in zd_rfwritev_locked() argument
1492 r = zd_rfwrite_locked(chip, values[i], bits); in zd_rfwritev_locked()
1516 const u32 *values, unsigned int count) in zd_rfwritev_cr_locked() argument
1522 r = zd_rfwrite_cr_locked(chip, values[i]); in zd_rfwritev_cr_locked()
1546 u32 values[2]; in zd_chip_get_tsf() local
1550 r = zd_ioread32v_locked(chip, values, (const zd_addr_t *)aw_pt_bi_addr, in zd_chip_get_tsf()
1556 tsf = values[1]; in zd_chip_get_tsf()
1557 tsf = (tsf << 32) | values[0]; in zd_chip_get_tsf()