Skip to content

Commit

Permalink
irda: w83977af_ir: cleanup an indent issue
Browse files Browse the repository at this point in the history
In commit 99d8d21 ("irda: w83977af_ir: Neaten logging"), we
accidentally added an extra tab to these lines.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Dan Carpenter authored and David S. Miller committed Dec 18, 2016
1 parent 7cafe8f commit 3a7f076
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/irda/w83977af_ir.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,9 +517,9 @@ static netdev_tx_t w83977af_hard_xmit(struct sk_buff *skb,

mtt = irda_get_mtt(skb);
pr_debug("%s: %ld, mtt=%d\n", __func__, jiffies, mtt);
if (mtt > 1000)
mdelay(mtt / 1000);
else if (mtt)
if (mtt > 1000)
mdelay(mtt / 1000);
else if (mtt)
udelay(mtt);

/* Enable DMA interrupt */
Expand Down

0 comments on commit 3a7f076

Please sign in to comment.