summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSumitra Sharma <sumitraartsy@gmail.com>2023-03-27 20:13:51 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-03-28 14:33:40 +0300
commit1068d4e910cc8e8d06dc04512287a59737292f40 (patch)
treedff154db2c5c32c2bc3206140ad0032212490830
parent16313403d873ff17a587818b61f84c8cb4971cef (diff)
downloadlinux-1068d4e910cc8e8d06dc04512287a59737292f40.tar.xz
staging: rtl8192e: fix line ending with '('
Splitting function header to multiple lines because of 80 characters per line limit, results in ending the function call line with '('. This leads to CHECK reported by checkpatch.pl Move the first parameter right after the '(' in the function call line. Align the rest of the parameters to the opening parenthesis. Signed-off-by: Sumitra Sharma <sumitraartsy@gmail.com> Link: https://lore.kernel.org/r/20230327171351.GA188288@sumitra.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8192e/rtllib.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h
index 1ce4c29dab13..155b54e93b1e 100644
--- a/drivers/staging/rtl8192e/rtllib.h
+++ b/drivers/staging/rtl8192e/rtllib.h
@@ -1910,10 +1910,9 @@ struct net_device *alloc_rtllib(int sizeof_priv);
/* rtllib_tx.c */
-int rtllib_encrypt_fragment(
- struct rtllib_device *ieee,
- struct sk_buff *frag,
- int hdr_len);
+int rtllib_encrypt_fragment(struct rtllib_device *ieee,
+ struct sk_buff *frag,
+ int hdr_len);
netdev_tx_t rtllib_xmit(struct sk_buff *skb, struct net_device *dev);
void rtllib_txb_free(struct rtllib_txb *txb);