u32 *hdr, u32 *pay, u32 size)
 {
        struct qlcnic_hardware_context *ahw = adapter->ahw;
-       u32 fw_mbx;
        u8 i, max = 2, hdr_size, j;
 
        hdr_size = (sizeof(struct qlcnic_bc_hdr) / sizeof(u32));
        max = (size / sizeof(u32)) + hdr_size;
 
-       fw_mbx = readl(QLCNIC_MBX_FW(ahw, 0));
        for (i = 2, j = 0; j < hdr_size; i++, j++)
                *(hdr++) = readl(QLCNIC_MBX_FW(ahw, i));
        for (; j < max; i++, j++)
 static int qlcnic_sriov_issue_bc_post(struct qlcnic_bc_trans *trans, u8 type)
 {
        struct qlcnic_vf_info *vf = trans->vf;
-       u32 pay_size, hdr_size;
+       u32 pay_size;
        u32 *hdr, *pay;
        int ret;
        u8 pci_func = trans->func_id;
        if (type == QLC_BC_COMMAND) {
                hdr = (u32 *)(trans->req_hdr + trans->curr_req_frag);
                pay = (u32 *)(trans->req_pay + trans->curr_req_frag);
-               hdr_size = (sizeof(struct qlcnic_bc_hdr) / sizeof(u32));
                pay_size = qlcnic_sriov_get_bc_paysize(trans->req_pay_size,
                                                       trans->curr_req_frag);
                pay_size = (pay_size / sizeof(u32));
        } else {
                hdr = (u32 *)(trans->rsp_hdr + trans->curr_rsp_frag);
                pay = (u32 *)(trans->rsp_pay + trans->curr_rsp_frag);
-               hdr_size = (sizeof(struct qlcnic_bc_hdr) / sizeof(u32));
                pay_size = qlcnic_sriov_get_bc_paysize(trans->rsp_pay_size,
                                                       trans->curr_rsp_frag);
                pay_size = (pay_size / sizeof(u32));