summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2006-03-04 21:46:34 +0000
committermjacob <mjacob@FreeBSD.org>2006-03-04 21:46:34 +0000
commit657e1fac2eff70b4d445fe18fea92c086068e0cb (patch)
tree954b03f2e4d4d31891b426c658063448d8ee9d7b
parent38417d76b6f50b0d2bfa2b4998fc94501ceafbad (diff)
downloadFreeBSD-src-657e1fac2eff70b4d445fe18fea92c086068e0cb.zip
FreeBSD-src-657e1fac2eff70b4d445fe18fea92c086068e0cb.tar.gz
turn some WARNs for unknown events into INFOs
-rw-r--r--sys/dev/mpt/mpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mpt/mpt.c b/sys/dev/mpt/mpt.c
index 89d9eaf..adffd44 100644
--- a/sys/dev/mpt/mpt.c
+++ b/sys/dev/mpt/mpt.c
@@ -502,12 +502,12 @@ mpt_event_reply_handler(struct mpt_softc *mpt, request_t *req,
handled += pers->event(mpt, req, msg);
if (handled == 0 && mpt->mpt_pers_mask == 0) {
- mpt_lprt(mpt, MPT_PRT_WARN,
+ mpt_lprt(mpt, MPT_PRT_INFO,
"No Handlers For Any Event Notify Frames. "
"Event %#x (ACK %sequired).\n",
msg->Event, msg->AckRequired? "r" : "not r");
} else if (handled == 0) {
- mpt_prt(mpt,
+ mpt_lprt(mpt, MPT_PRT_WARN,
"Unhandled Event Notify Frame. Event %#x "
"(ACK %sequired).\n",
msg->Event, msg->AckRequired? "r" : "not r");
OpenPOWER on IntegriCloud