summary refs log tree commit diff
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2019-09-27 10:40:39 +0100
committerDavid S. Miller <davem@davemloft.net>2019-09-27 20:58:35 +0200
commitfaeacb6ddb13b7a020b50b9246fe098653cfbd6e (patch)
treeb931fd338ed0aa11db4ad875f355f88459928955
parent78beef629fd95be4ed853b2d37b832f766bd96ca (diff)
downloadlinux-faeacb6ddb13b7a020b50b9246fe098653cfbd6e.tar.gz
net: tap: clean up an indentation issue
There is a statement that is indented too deeply, remove
the extraneous tab.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/tap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/tap.c b/drivers/net/tap.c
index dd614c2cd994..3ae70c7e6860 100644
--- a/drivers/net/tap.c
+++ b/drivers/net/tap.c
@@ -1200,7 +1200,7 @@ err_kfree:
 	kfree_skb(skb);
 err:
 	rcu_read_lock();
-		tap = rcu_dereference(q->tap);
+	tap = rcu_dereference(q->tap);
 	if (tap && tap->count_tx_dropped)
 		tap->count_tx_dropped(tap);
 	rcu_read_unlock();