iwlegacy: Convert /n to \n
Use a newline character appropriately. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
4c10416236
commit
45eeeaf6cb
|
@ -573,7 +573,7 @@ il3945_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb)
|
||||||
rx_status.flag |= RX_FLAG_SHORTPRE;
|
rx_status.flag |= RX_FLAG_SHORTPRE;
|
||||||
|
|
||||||
if ((unlikely(rx_stats->phy_count > 20))) {
|
if ((unlikely(rx_stats->phy_count > 20))) {
|
||||||
D_DROP("dsp size out of range [0,20]: %d/n",
|
D_DROP("dsp size out of range [0,20]: %d\n",
|
||||||
rx_stats->phy_count);
|
rx_stats->phy_count);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -670,7 +670,7 @@ il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((unlikely(phy_res->cfg_phy_cnt > 20))) {
|
if ((unlikely(phy_res->cfg_phy_cnt > 20))) {
|
||||||
D_DROP("dsp size out of range [0,20]: %d/n",
|
D_DROP("dsp size out of range [0,20]: %d\n",
|
||||||
phy_res->cfg_phy_cnt);
|
phy_res->cfg_phy_cnt);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue