Lines Matching defs:stat
709 struct b43legacy_txstatus stat;
717 stat.cookie = (v0 >> 16);
718 stat.seq = (v1 & 0x0000FFFF);
719 stat.phy_stat = ((v1 & 0x00FF0000) >> 16);
721 stat.frame_count = ((tmp & 0xF000) >> 12);
722 stat.rts_count = ((tmp & 0x0F00) >> 8);
723 stat.supp_reason = ((tmp & 0x001C) >> 2);
724 stat.pm_indicated = !!(tmp & 0x0080);
725 stat.intermediate = !!(tmp & 0x0040);
726 stat.for_ampdu = !!(tmp & 0x0020);
727 stat.acked = !!(tmp & 0x0002);
729 b43legacy_handle_txstatus(dev, &stat);