From: Zach Brown ifb: replace missing comma to separate pr_debug arguments Signed-off-by: Zach Brown Signed-off-by: Andrew Morton --- drivers/net/ifb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/net/ifb.c~pr_debug-ifb-replace-missing-comma-to-separate-pr_debug-arguments drivers/net/ifb.c --- a/drivers/net/ifb.c~pr_debug-ifb-replace-missing-comma-to-separate-pr_debug-arguments +++ a/drivers/net/ifb.c @@ -200,8 +200,8 @@ static struct net_device_stats *ifb_get_ pr_debug("tasklets stats %ld:%ld:%ld:%ld:%ld:%ld:%ld:%ld:%ld \n", dp->st_task_enter, dp->st_txq_refl_try, dp->st_rxq_enter, - dp->st_rx2tx_tran dp->st_rxq_notenter, dp->st_rx_frm_egr, - dp->st_rx_frm_ing, dp->st_rxq_check, dp->st_rxq_rsch ); + dp->st_rx2tx_tran, dp->st_rxq_notenter, dp->st_rx_frm_egr, + dp->st_rx_frm_ing, dp->st_rxq_check, dp->st_rxq_rsch); return stats; } _