Searched refs:bc_struct (Results 1 – 1 of 1) sorted by relevance
/linux-5.19.10/drivers/scsi/aic94xx/ |
D | aic94xx_sds.c | 201 struct asd_bios_chim_struct *bc_struct; in asd_get_bios_chim() local 210 bc_struct = kmalloc(sizeof(*bc_struct), GFP_KERNEL); in asd_get_bios_chim() 211 if (!bc_struct) { in asd_get_bios_chim() 215 err = asd_read_ocm_seg(asd_ha, (void *)bc_struct, offs, in asd_get_bios_chim() 216 sizeof(*bc_struct)); in asd_get_bios_chim() 221 if (strncmp(bc_struct->sig, "SOIB", 4) in asd_get_bios_chim() 222 && strncmp(bc_struct->sig, "IPSA", 4)) { in asd_get_bios_chim() 224 bc_struct->sig[0], bc_struct->sig[1], in asd_get_bios_chim() 225 bc_struct->sig[2], bc_struct->sig[3]); in asd_get_bios_chim() 229 if (bc_struct->major != 1) { in asd_get_bios_chim() [all …]
|