staging: rtl8192u - add parameter names
Fixed checkpatch.pl warnings of "function definition argument FOO should also have an identifier name" Found using checkpatch Signed-off-by: Derek Robson <robsonde@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3fa4b5e58e
commit
178f5f0f08
|
@ -2187,7 +2187,7 @@ int ieee80211_encrypt_fragment(struct ieee80211_device *ieee,
|
|||
struct sk_buff *frag, int hdr_len);
|
||||
|
||||
int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev);
|
||||
void ieee80211_txb_free(struct ieee80211_txb *);
|
||||
void ieee80211_txb_free(struct ieee80211_txb *txb);
|
||||
|
||||
|
||||
/* ieee80211_rx.c */
|
||||
|
|
|
@ -82,8 +82,8 @@ struct ieee80211_crypt_data {
|
|||
int ieee80211_register_crypto_ops(struct ieee80211_crypto_ops *ops);
|
||||
int ieee80211_unregister_crypto_ops(struct ieee80211_crypto_ops *ops);
|
||||
struct ieee80211_crypto_ops *ieee80211_get_crypto_ops(const char *name);
|
||||
void ieee80211_crypt_deinit_entries(struct ieee80211_device *, int);
|
||||
void ieee80211_crypt_deinit_handler(unsigned long);
|
||||
void ieee80211_crypt_deinit_entries(struct ieee80211_device *ieee, int force);
|
||||
void ieee80211_crypt_deinit_handler(unsigned long data);
|
||||
void ieee80211_crypt_delayed_deinit(struct ieee80211_device *ieee,
|
||||
struct ieee80211_crypt_data **crypt);
|
||||
|
||||
|
|
|
@ -1147,9 +1147,9 @@ int write_nic_word(struct net_device *dev, int x, u16 y);
|
|||
int write_nic_dword(struct net_device *dev, int x, u32 y);
|
||||
void force_pci_posting(struct net_device *dev);
|
||||
|
||||
void rtl8192_rtx_disable(struct net_device *);
|
||||
void rtl8192_rx_enable(struct net_device *);
|
||||
void rtl8192_tx_enable(struct net_device *);
|
||||
void rtl8192_rtx_disable(struct net_device *dev);
|
||||
void rtl8192_rx_enable(struct net_device *dev);
|
||||
void rtl8192_tx_enable(struct net_device *dev);
|
||||
|
||||
void rtl8192_disassociate(struct net_device *dev);
|
||||
void rtl8185_set_rf_pins_enable(struct net_device *dev, u32 a);
|
||||
|
|
Loading…
Reference in New Issue