Lines Matching refs:p_entry

594  * qla8044_write_list - Write the value (p_entry->arg2) to address specified
595 * by p_entry->arg1 for all entries in header with delay of p_hdr->delay between
606 struct qla8044_entry *p_entry;
609 p_entry = (struct qla8044_entry *)((char *)p_hdr +
612 for (i = 0; i < p_hdr->count; i++, p_entry++) {
613 qla8044_wr_reg_indirect(vha, p_entry->arg1, p_entry->arg2);
620 * qla8044_read_write_list - Read from address specified by p_entry->arg1,
621 * write value read to address specified by p_entry->arg2, for all entries in
632 struct qla8044_entry *p_entry;
635 p_entry = (struct qla8044_entry *)((char *)p_hdr +
638 for (i = 0; i < p_hdr->count; i++, p_entry++) {
639 qla8044_read_write_crb_reg(vha, p_entry->arg1,
640 p_entry->arg2);
704 * register specified by p_entry->arg1 and compare (value AND test_mask) with
716 struct qla8044_entry *p_entry;
727 p_entry = (struct qla8044_entry *)((char *)p_poll +
733 for (i = 0; i < p_hdr->count; i++, p_entry++)
734 qla8044_poll_reg(vha, p_entry->arg1,
737 for (i = 0; i < p_hdr->count; i++, p_entry++) {
740 p_entry->arg1, delay,
749 p_entry->arg1, &value);
751 p_entry->arg2, &value);
772 struct qla8044_quad_entry *p_entry;
779 p_entry = (struct qla8044_quad_entry *)((char *)p_poll +
784 for (i = 0; i < p_hdr->count; i++, p_entry++) {
786 p_entry->dr_addr, p_entry->dr_value);
788 p_entry->ar_addr, p_entry->ar_value);
791 p_entry->ar_addr, delay,
806 * qla8044_read_modify_write - Read value from p_entry->arg1, modify the
807 * value, write value to p_entry->arg2. Process entries with p_hdr->delay
818 struct qla8044_entry *p_entry;
825 p_entry = (struct qla8044_entry *)((char *)p_rmw_hdr +
828 for (i = 0; i < p_hdr->count; i++, p_entry++) {
829 qla8044_rmw_crb_reg(vha, p_entry->arg1,
830 p_entry->arg2, p_rmw_hdr);
890 struct qla8044_quad_entry *p_entry;
898 p_entry = (struct qla8044_quad_entry *)
903 for (i = 0; i < p_hdr->count; i++, p_entry++) {
904 qla8044_wr_reg_indirect(vha, p_entry->ar_addr,
905 p_entry->ar_value);
907 if (qla8044_poll_reg(vha, p_entry->ar_addr, delay,
919 p_entry->dr_addr, &value);
945 char *p_entry = p_buff;
953 p_hdr = (struct qla8044_reset_entry_hdr *)p_entry;
993 p_entry += p_hdr->size;