diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-09-27 10:40:39 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-09-27 20:58:35 +0200 |
commit | faeacb6ddb13b7a020b50b9246fe098653cfbd6e (patch) | |
tree | b931fd338ed0aa11db4ad875f355f88459928955 | |
parent | 78beef629fd95be4ed853b2d37b832f766bd96ca (diff) | |
download | linux-faeacb6ddb13b7a020b50b9246fe098653cfbd6e.tar.bz2 |
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.c | 2 |
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(); |