diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2019-04-15 11:36:01 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-04-15 17:22:01 -0700 |
commit | 9c5f8a19b2de2860d4b7764204c52832ac0f4440 (patch) | |
tree | 30232de82c7b3dd5f825ff4341229a4049745aa8 /net/hsr/hsr_main.h | |
parent | dcdecdcfe1fc39ded8590aed2fe84d62f14b2392 (diff) | |
download | blackbird-op-linux-9c5f8a19b2de2860d4b7764204c52832ac0f4440.tar.gz blackbird-op-linux-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 'net/hsr/hsr_main.h')
-rw-r--r-- | net/hsr/hsr_main.h | 8 |
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 |