aboutsummaryrefslogtreecommitdiffstats
path: root/net/hsr/hsr_main.h
diff options
context:
space:
mode:
authorMurali Karicheri <m-karicheri2@ti.com>2019-04-15 11:36:01 -0400
committerDavid S. Miller <davem@davemloft.net>2019-04-15 17:22:01 -0700
commit9c5f8a19b2de2860d4b7764204c52832ac0f4440 (patch)
tree30232de82c7b3dd5f825ff4341229a4049745aa8 /net/hsr/hsr_main.h
parentnet: phy: switch drivers to use dynamic feature detection (diff)
downloadlinux-dev-9c5f8a19b2de2860d4b7764204c52832ac0f4440.tar.xz
linux-dev-9c5f8a19b2de2860d4b7764204c52832ac0f4440.zip
net: hsr: fix naming of file and functions
Fix the file name and functions to match with existing implementation. Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/hsr/hsr_main.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/hsr/hsr_main.h b/net/hsr/hsr_main.h
index 778213f07fe0..6cd4dff58727 100644
--- a/net/hsr/hsr_main.h
+++ b/net/hsr/hsr_main.h
@@ -184,15 +184,15 @@ static inline u16 hsr_get_skb_sequence_nr(struct sk_buff *skb)
}
#if IS_ENABLED(CONFIG_DEBUG_FS)
-int hsr_prp_debugfs_init(struct hsr_priv *priv);
-void hsr_prp_debugfs_term(struct hsr_priv *priv);
+int hsr_debugfs_init(struct hsr_priv *priv);
+void hsr_debugfs_term(struct hsr_priv *priv);
#else
-static inline int hsr_prp_debugfs_init(struct hsr_priv *priv)
+static inline int hsr_debugfs_init(struct hsr_priv *priv)
{
return 0;
}
-static inline void hsr_prp_debugfs_term(struct hsr_priv *priv)
+static inline void hsr_debugfs_term(struct hsr_priv *priv)
{}
#endif