Date: Sun, 24 Mar 2019 19:29:30 +0000 (UTC) From: Scott Long <scottl@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r345482 - head/sys/dev/mps Message-ID: <201903241929.x2OJTUD4031507@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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(
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903241929.x2OJTUD4031507>