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

Gleb Smirnoff glebius at FreeBSD.org
Mon May 25 15:12:24 UTC 2015


Author: glebius
Date: Mon May 25 15:12:23 2015
New Revision: 283533
URL: https://svnweb.freebsd.org/changeset/base/283533

Log:
  Use ic_printf() instead of if_printf().

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

Modified: head/sys/dev/iwn/if_iwn.c
==============================================================================
--- head/sys/dev/iwn/if_iwn.c	Mon May 25 15:09:17 2015	(r283532)
+++ head/sys/dev/iwn/if_iwn.c	Mon May 25 15:12:23 2015	(r283533)
@@ -2536,8 +2536,7 @@ iwn_setregdomain(struct ieee80211com *ic
 
 		channel = iwn_find_eeprom_channel(sc, c);
 		if (channel == NULL) {
-			if_printf(ic->ic_ifp,
-			    "%s: invalid channel %u freq %u/0x%x\n",
+			ic_printf(ic, "%s: invalid channel %u freq %u/0x%x\n",
 			    __func__, c->ic_ieee, c->ic_freq, c->ic_flags);
 			return EINVAL;
 		}
@@ -4905,7 +4904,7 @@ iwn_watchdog(void *arg)
 
 	if (sc->sc_tx_timer > 0) {
 		if (--sc->sc_tx_timer == 0) {
-			if_printf(ifp, "device timeout\n");
+			ic_printf(ic, "device timeout\n");
 			ieee80211_runtask(ic, &sc->sc_reinit_task);
 			return;
 		}


More information about the svn-src-head mailing list