diff options
author | Abhinav Jain <crazypsychild@gmail.com> | 2019-07-26 22:01:46 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-07-30 10:54:48 +0300 |
commit | 91e590851f51064a2f4cd11cf6ea01c21c4490bc (patch) | |
tree | 50ad1dc9fc727ef3a8ec033c3776c4ced47ba3a9 /drivers/staging/rtl8192e | |
parent | c47f77eed0da6f829042a266a2f33ef31c250969 (diff) | |
download | linux-91e590851f51064a2f4cd11cf6ea01c21c4490bc.tar.xz |
Staging: rtl8192e: fixed a function prototype definition issue
Added the identifier name in the function prototype definition.
Signed-off-by: Abhinav Jain <crazypsychild@gmail.com>
Link: https://lore.kernel.org/r/20190726190146.10875-1-ubuntu@ip-172-31-129-142.ec2.internal
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e')
-rw-r--r-- | drivers/staging/rtl8192e/rtllib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h index 096254e422b3..7a012881578f 100644 --- a/drivers/staging/rtl8192e/rtllib.h +++ b/drivers/staging/rtl8192e/rtllib.h @@ -1940,7 +1940,7 @@ int rtllib_encrypt_fragment( int hdr_len); int rtllib_xmit(struct sk_buff *skb, struct net_device *dev); -void rtllib_txb_free(struct rtllib_txb *); +void rtllib_txb_free(struct rtllib_txb *txb); /* rtllib_rx.c */ int rtllib_rx(struct rtllib_device *ieee, struct sk_buff *skb, |