diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2019-04-05 19:31:27 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-04-07 03:32:21 +0200 |
commit | 0525fc069f03dfd871752eb7afc85075444c8b28 (patch) | |
tree | 679a9e5341dd31980b7ccd14b644a7fc34d1410b /net/hsr/hsr_device.c | |
parent | net: hsr: fix alignment issues in the code for functions (diff) | |
download | linux-0525fc069f03dfd871752eb7afc85075444c8b28.tar.xz linux-0525fc069f03dfd871752eb7afc85075444c8b28.zip |
net: hsr: fix lines that ends with a '('
This patch fixes function calls that ends with '(' in a line.
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_device.c')
-rw-r--r-- | net/hsr/hsr_device.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/hsr/hsr_device.c b/net/hsr/hsr_device.c index 0aea1bd09526..567c890f08a5 100644 --- a/net/hsr/hsr_device.c +++ b/net/hsr/hsr_device.c @@ -254,10 +254,9 @@ static void send_hsr_supervision_frame(struct hsr_port *master, hlen = LL_RESERVED_SPACE(master->dev); tlen = master->dev->needed_tailroom; - skb = dev_alloc_skb( - sizeof(struct hsr_tag) + - sizeof(struct hsr_sup_tag) + - sizeof(struct hsr_sup_payload) + hlen + tlen); + skb = dev_alloc_skb(sizeof(struct hsr_tag) + + sizeof(struct hsr_sup_tag) + + sizeof(struct hsr_sup_payload) + hlen + tlen); if (skb == NULL) return; |