Author: mav
Date: Mon Dec 19 15:49:59 2016
New Revision: 310275
URL: https://svnweb.freebsd.org/changeset/base/310275

Log:
  Fix typo in function name.

Modified:
  head/sys/cam/ctl/ctl_error.c

Modified: head/sys/cam/ctl/ctl_error.c
==============================================================================
--- head/sys/cam/ctl/ctl_error.c        Mon Dec 19 15:23:24 2016        
(r310274)
+++ head/sys/cam/ctl/ctl_error.c        Mon Dec 19 15:49:59 2016        
(r310275)
@@ -366,7 +366,7 @@ ctl_set_ua(struct ctl_scsiio *ctsio, int
 }
 
 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, uint3
        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
        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,
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to