Lines Matching refs:fwh
1613 struct at76_fw_header *fwh;
1634 fwh = (struct at76_fw_header *)(fwe->fw->data);
1636 if (fwe->fw->size <= sizeof(*fwh)) {
1643 fwe->board_type = le32_to_cpu(fwh->board_type);
1651 fwe->fw_version.major = fwh->major;
1652 fwe->fw_version.minor = fwh->minor;
1653 fwe->fw_version.patch = fwh->patch;
1654 fwe->fw_version.build = fwh->build;
1656 str = (char *)fwh + le32_to_cpu(fwh->str_offset);
1657 fwe->intfw = (u8 *)fwh + le32_to_cpu(fwh->int_fw_offset);
1658 fwe->intfw_size = le32_to_cpu(fwh->int_fw_len);
1659 fwe->extfw = (u8 *)fwh + le32_to_cpu(fwh->ext_fw_offset);
1660 fwe->extfw_size = le32_to_cpu(fwh->ext_fw_len);
1666 fwe->fwname, fwh->major, fwh->minor, fwh->patch, fwh->build);
1669 le32_to_cpu(fwh->int_fw_offset), le32_to_cpu(fwh->int_fw_len),
1670 le32_to_cpu(fwh->ext_fw_offset), le32_to_cpu(fwh->ext_fw_len));