Fix typo in function name.
This commit is contained in:
parent
bb2eabe947
commit
c329b295dc
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=310275
@ -366,7 +366,7 @@ ctl_set_ua(struct ctl_scsiio *ctsio, int asc, int ascq)
|
||||
}
|
||||
|
||||
static void
|
||||
ctl_ua_to_acsq(struct ctl_lun *lun, ctl_ua_type ua_to_build, int *asc,
|
||||
ctl_ua_to_ascq(struct ctl_lun *lun, ctl_ua_type ua_to_build, int *asc,
|
||||
int *ascq, ctl_ua_type *ua_to_clear, uint8_t **info)
|
||||
{
|
||||
|
||||
@ -492,7 +492,7 @@ ctl_build_qae(struct ctl_lun *lun, uint32_t initidx, uint8_t *resp)
|
||||
ua_to_build = (1 << (ffs(ua) - 1));
|
||||
ua_to_clear = ua_to_build;
|
||||
info = NULL;
|
||||
ctl_ua_to_acsq(lun, ua_to_build, &asc, &ascq, &ua_to_clear, &info);
|
||||
ctl_ua_to_ascq(lun, ua_to_build, &asc, &ascq, &ua_to_clear, &info);
|
||||
|
||||
resp[0] = SSD_KEY_UNIT_ATTENTION;
|
||||
if (ua_to_build == ua)
|
||||
@ -537,7 +537,7 @@ ctl_build_ua(struct ctl_lun *lun, uint32_t initidx,
|
||||
ua_to_build = (1 << (ffs(ua[i]) - 1));
|
||||
ua_to_clear = ua_to_build;
|
||||
info = NULL;
|
||||
ctl_ua_to_acsq(lun, ua_to_build, &asc, &ascq, &ua_to_clear, &info);
|
||||
ctl_ua_to_ascq(lun, ua_to_build, &asc, &ascq, &ua_to_clear, &info);
|
||||
|
||||
ctl_set_sense_data(sense, lun, sense_format, /*current_error*/ 1,
|
||||
/*sense_key*/ SSD_KEY_UNIT_ATTENTION, asc, ascq,
|
||||
|
Loading…
Reference in New Issue
Block a user