[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200120032639.2963-1-xiaofeng.yan2012@gmail.com>
Date: Mon, 20 Jan 2020 11:26:39 +0800
From: "xiaofeng.yan" <xiaofeng.yan2012@...il.com>
To: arvid.brodin@...en.se, davem@...emloft.net, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: xiaofeng.yan2012@...il.com, yanxiaofeng7@...com
Subject: [PATCH] hsr: Fix a compilation error
From: "xiaofeng.yan" <yanxiaofeng7@...com>
A compliation error happen when building branch 5.5-rc7
In file included from net/hsr/hsr_main.c:12:0:
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)
So Removed one void.
Signed-off-by: xiaofeng.yan <yanxiaofeng7@...com>
---
net/hsr/hsr_main.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/hsr/hsr_main.h b/net/hsr/hsr_main.h
index d40de84..754d84b 100644
--- a/net/hsr/hsr_main.h
+++ b/net/hsr/hsr_main.h
@@ -191,7 +191,7 @@ static inline u16 hsr_get_skb_sequence_nr(struct sk_buff *skb)
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,
--
1.8.3.1
Powered by blists - more mailing lists