Use ic_printf() instead of if_printf().
This commit is contained in:
parent
e6feb66faf
commit
9dbbcd5d9a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283533
@ -2536,8 +2536,7 @@ iwn_setregdomain(struct ieee80211com *ic, struct ieee80211_regdomain *rd,
|
|||||||
|
|
||||||
channel = iwn_find_eeprom_channel(sc, c);
|
channel = iwn_find_eeprom_channel(sc, c);
|
||||||
if (channel == NULL) {
|
if (channel == NULL) {
|
||||||
if_printf(ic->ic_ifp,
|
ic_printf(ic, "%s: invalid channel %u freq %u/0x%x\n",
|
||||||
"%s: invalid channel %u freq %u/0x%x\n",
|
|
||||||
__func__, c->ic_ieee, c->ic_freq, c->ic_flags);
|
__func__, c->ic_ieee, c->ic_freq, c->ic_flags);
|
||||||
return EINVAL;
|
return EINVAL;
|
||||||
}
|
}
|
||||||
@ -4905,7 +4904,7 @@ iwn_watchdog(void *arg)
|
|||||||
|
|
||||||
if (sc->sc_tx_timer > 0) {
|
if (sc->sc_tx_timer > 0) {
|
||||||
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);
|
ieee80211_runtask(ic, &sc->sc_reinit_task);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user