diff options
author | 2021-12-16 23:19:16 +0800 | |
---|---|---|
committer | 2021-12-17 10:24:07 +0000 | |
commit | b62e3317b68d9c84301940ca8ca9c35a584111b2 (patch) | |
tree | 9f3c08c4a22d406170a695f3584be99f4339313a | |
parent | Merge tag 'audit-pr-20211216' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit (diff) | |
download | linux-dev-b62e3317b68d9c84301940ca8ca9c35a584111b2.tar.xz linux-dev-b62e3317b68d9c84301940ca8ca9c35a584111b2.zip |
net: fix typo in a comment
The double 'as' in a comment is repeated, thus it should be removed.
Signed-off-by: Xiang wangx <wangxiang@cdjrlc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index be5cb3360b94..6aadcc0ecb5b 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1937,7 +1937,7 @@ enum netdev_ml_priv_type { * @udp_tunnel_nic: UDP tunnel offload state * @xdp_state: stores info on attached XDP BPF programs * - * @nested_level: Used as as a parameter of spin_lock_nested() of + * @nested_level: Used as a parameter of spin_lock_nested() of * dev->addr_list_lock. * @unlink_list: As netif_addr_lock() can be called recursively, * keep a list of interfaces to be deleted. |