mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: rtl8192e: Add identifier name to function definition
The patch fixes the following checkpatch.pl warnings: - WARNING: function definition argument 'struct net_device *' should also have an identifier name FILE: ./rtl8192e/rtl8192e/rtl_core.h:572: - WARNING: function definition argument 'struct net_device *' should also have an identifier name FILE: ./rtl8192e/rtl8192e/rtl_core.h:573: Signed-off-by: Ojaswin Mujoo <ojaswin98@gmail.com> Link: https://lore.kernel.org/r/d856d9f22777524f5c10bddb7f7930d97e58c20b.1620642396.git.ojaswin98@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1ba6d8dc50
commit
d0cf4e2bd4
1 changed files with 2 additions and 2 deletions
|
@ -569,8 +569,8 @@ void rtl92e_writel(struct net_device *dev, int x, u32 y);
|
|||
|
||||
void force_pci_posting(struct net_device *dev);
|
||||
|
||||
void rtl92e_rx_enable(struct net_device *);
|
||||
void rtl92e_tx_enable(struct net_device *);
|
||||
void rtl92e_rx_enable(struct net_device *dev);
|
||||
void rtl92e_tx_enable(struct net_device *dev);
|
||||
|
||||
void rtl92e_hw_sleep_wq(void *data);
|
||||
void rtl92e_commit(struct net_device *dev);
|
||||
|
|
Loading…
Reference in a new issue