Lines Matching refs:pp
772 struct phy_packet *pp = (struct phy_packet *) data; in print_packet() local
778 switch (pp->common.identifier) { in print_packet()
780 if (!pp->phy_config.set_root && !pp->phy_config.set_gap_count) { in print_packet()
781 printf("ext phy config: phy_id=%02x", pp->phy_config.root_id); in print_packet()
784 if (pp->phy_config.set_root) in print_packet()
785 printf(" set_root_id=%02x", pp->phy_config.root_id); in print_packet()
786 if (pp->phy_config.set_gap_count) in print_packet()
787 printf(" set_gap_count=%d", pp->phy_config.gap_count); in print_packet()
792 printf("link-on packet, phy_id=%02x", pp->link_on.phy_id); in print_packet()
796 if (pp->self_id.extended) { in print_packet()
798 pp->ext_self_id.phy_id, pp->ext_self_id.sequence); in print_packet()
804 pp->self_id.phy_id, in print_packet()
805 (pp->self_id.link_active ? "active" : "not active"), in print_packet()
806 pp->self_id.gap_count, in print_packet()
807 speed_names[pp->self_id.phy_speed], in print_packet()
808 (pp->self_id.contender ? ", irm contender" : ""), in print_packet()
809 (pp->self_id.initiated_reset ? ", initiator" : "")); in print_packet()