Lines Matching refs:tab_desc
798 struct uni_table_desc *tab_desc; in qlcnic_validate_bootld() local
807 tab_desc = qlcnic_get_table_desc(unirom, QLCNIC_UNI_DIR_SECT_BOOTLD); in qlcnic_validate_bootld()
809 if (!tab_desc) in qlcnic_validate_bootld()
812 tab_size = le32_to_cpu(tab_desc->findex) + in qlcnic_validate_bootld()
813 le32_to_cpu(tab_desc->entry_size) * (idx + 1); in qlcnic_validate_bootld()
818 offs = le32_to_cpu(tab_desc->findex) + in qlcnic_validate_bootld()
819 le32_to_cpu(tab_desc->entry_size) * idx; in qlcnic_validate_bootld()
833 struct uni_table_desc *tab_desc; in qlcnic_validate_fw() local
842 tab_desc = qlcnic_get_table_desc(unirom, QLCNIC_UNI_DIR_SECT_FW); in qlcnic_validate_fw()
844 if (!tab_desc) in qlcnic_validate_fw()
847 tab_size = le32_to_cpu(tab_desc->findex) + in qlcnic_validate_fw()
848 le32_to_cpu(tab_desc->entry_size) * (idx + 1); in qlcnic_validate_fw()
853 offs = le32_to_cpu(tab_desc->findex) + in qlcnic_validate_fw()
854 le32_to_cpu(tab_desc->entry_size) * idx; in qlcnic_validate_fw()
949 struct uni_table_desc *tab_desc; in qlcnic_get_data_desc() local
956 tab_desc = qlcnic_get_table_desc(unirom, section); in qlcnic_get_data_desc()
958 if (tab_desc == NULL) in qlcnic_get_data_desc()
961 offs = le32_to_cpu(tab_desc->findex) + in qlcnic_get_data_desc()
962 le32_to_cpu(tab_desc->entry_size) * idx; in qlcnic_get_data_desc()