diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2019-04-05 19:31:26 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-04-07 03:32:21 +0200 |
commit | 4fe25bd8c3e74519e3a0682b001d248fdf23838b (patch) | |
tree | e6143f7ee2aeeabaff6d8b4d9665c7f02d86d805 /net/hsr/hsr_framereg.c | |
parent | net: hsr: remove unnecessary paranthesis from the code (diff) | |
download | linux-4fe25bd8c3e74519e3a0682b001d248fdf23838b.tar.xz linux-4fe25bd8c3e74519e3a0682b001d248fdf23838b.zip |
net: hsr: fix alignment issues in the code for functions
This patch fixes alignment issues in code for functions. This is
seen when ran checkpatch.pl -f option on files under net/hsr.
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/hsr/hsr_framereg.c')
-rw-r--r-- | net/hsr/hsr_framereg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/hsr/hsr_framereg.c b/net/hsr/hsr_framereg.c index 47dbaf2faefa..78fca38ffa9f 100644 --- a/net/hsr/hsr_framereg.c +++ b/net/hsr/hsr_framereg.c @@ -105,7 +105,7 @@ int hsr_create_self_node(struct list_head *self_node_db, rcu_read_lock(); oldnode = list_first_or_null_rcu(self_node_db, - struct hsr_node, mac_list); + struct hsr_node, mac_list); if (oldnode) { list_replace_rcu(&oldnode->mac_list, &node->mac_list); rcu_read_unlock(); |