Author: scottl
Date: Sun Mar 24 19:29:30 2019
New Revision: 345482
URL: https://svnweb.freebsd.org/changeset/base/345482

Log:
  Fix a transposition error from the previous commit

Modified:
  head/sys/dev/mps/mps.c

Modified: head/sys/dev/mps/mps.c
==============================================================================
--- head/sys/dev/mps/mps.c      Sun Mar 24 19:27:03 2019        (r345481)
+++ head/sys/dev/mps/mps.c      Sun Mar 24 19:29:30 2019        (r345482)
@@ -2481,7 +2481,7 @@ mps_intr_locked(void *data)
                        } else {
                                cm = &sc->commands[
                                    le16toh(desc->AddressReply.SMID)];
-                               if (cm->cm_state != MPS_MPS_STATE_TIMEDOUT)
+                               if (cm->cm_state != MPS_CM_STATE_TIMEDOUT)
                                        cm->cm_state = MPS_CM_STATE_BUSY;
                                cm->cm_reply = reply;
                                cm->cm_reply_data = le32toh(
_______________________________________________
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