Lines Matching refs:pp
759 struct phy_packet *pp = (struct phy_packet *) data; in print_packet() local
765 switch (pp->common.identifier) { in print_packet()
767 if (!pp->phy_config.set_root && !pp->phy_config.set_gap_count) { in print_packet()
768 printf("ext phy config: phy_id=%02x", pp->phy_config.root_id); in print_packet()
771 if (pp->phy_config.set_root) in print_packet()
772 printf(" set_root_id=%02x", pp->phy_config.root_id); in print_packet()
773 if (pp->phy_config.set_gap_count) in print_packet()
774 printf(" set_gap_count=%u", pp->phy_config.gap_count); in print_packet()
779 printf("link-on packet, phy_id=%02x", pp->link_on.phy_id); in print_packet()
783 if (pp->self_id.extended) { in print_packet()
785 pp->ext_self_id.phy_id, pp->ext_self_id.sequence); in print_packet()
791 pp->self_id.phy_id, in print_packet()
792 (pp->self_id.link_active ? "active" : "not active"), in print_packet()
793 pp->self_id.gap_count, in print_packet()
794 speed_names[pp->self_id.phy_speed], in print_packet()
795 (pp->self_id.contender ? ", irm contender" : ""), in print_packet()
796 (pp->self_id.initiated_reset ? ", initiator" : "")); in print_packet()