svn commit: r315996 - head/sys/dev/iwn

Andriy Voskoboinyk avos at FreeBSD.org
Sun Mar 26 18:06:53 UTC 2017


Author: avos
Date: Sun Mar 26 18:06:51 2017
New Revision: 315996
URL: https://svnweb.freebsd.org/changeset/base/315996

Log:
  iwn: fix debug message

Modified:
  head/sys/dev/iwn/if_iwn.c

Modified: head/sys/dev/iwn/if_iwn.c
==============================================================================
--- head/sys/dev/iwn/if_iwn.c	Sun Mar 26 18:06:22 2017	(r315995)
+++ head/sys/dev/iwn/if_iwn.c	Sun Mar 26 18:06:51 2017	(r315996)
@@ -3292,8 +3292,8 @@ iwn5000_rx_calib_results(struct iwn_soft
 
 	/* Runtime firmware should not send such a notification. */
 	if (sc->sc_flags & IWN_FLAG_CALIB_DONE){
-		DPRINTF(sc, IWN_DEBUG_TRACE, "->%s received after clib done\n",
-	    __func__);
+		DPRINTF(sc, IWN_DEBUG_TRACE,
+		    "->%s received after calib done\n", __func__);
 		return;
 	}
 	len = (le32toh(desc->len) & 0x3fff) - 4;


More information about the svn-src-head mailing list