forked from luck/tmp_suning_uos_patched
hsr: fix dummy hsr_debugfs_rename() declaration
The hsr_debugfs_rename prototype got an extra 'void' that needs to
be removed again:
In file included from /git/arm-soc/net/hsr/hsr_main.c:12:
net/hsr/hsr_main.h:194:20: error: two or more data types in declaration specifiers
static inline void void hsr_debugfs_rename(struct net_device *dev)
Fixes: 4c2d5e33dc
("hsr: rename debugfs file when interface name is changed")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7c7b58d46b
commit
b9ae512736
|
@ -191,7 +191,7 @@ void hsr_debugfs_term(struct hsr_priv *priv);
|
|||
void hsr_debugfs_create_root(void);
|
||||
void hsr_debugfs_remove_root(void);
|
||||
#else
|
||||
static inline void void hsr_debugfs_rename(struct net_device *dev)
|
||||
static inline void hsr_debugfs_rename(struct net_device *dev)
|
||||
{
|
||||
}
|
||||
static inline void hsr_debugfs_init(struct hsr_priv *priv,
|
||||
|
|
Loading…
Reference in New Issue
Block a user