diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-05-27 17:09:43 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-05-27 17:09:43 +0000 |
commit | 9217115687d4abf15e898b185da07cac883f5c82 (patch) | |
tree | 4949fc90d226600260d3118cc538066268df7815 /target/linux/generic/files | |
parent | 466ef3017307579de1bb529097427a009d562623 (diff) | |
download | mtk-20170518-9217115687d4abf15e898b185da07cac883f5c82.zip mtk-20170518-9217115687d4abf15e898b185da07cac883f5c82.tar.gz mtk-20170518-9217115687d4abf15e898b185da07cac883f5c82.tar.bz2 |
generic: rtl8366_smi: rename debugfs Kconfig symbol
SVN-Revision: 31915
Diffstat (limited to 'target/linux/generic/files')
-rw-r--r-- | target/linux/generic/files/drivers/net/phy/rtl8366_smi.c | 6 | ||||
-rw-r--r-- | target/linux/generic/files/drivers/net/phy/rtl8366_smi.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/rtl8366_smi.c b/target/linux/generic/files/drivers/net/phy/rtl8366_smi.c index 271e2b5..7f5abd4 100644 --- a/target/linux/generic/files/drivers/net/phy/rtl8366_smi.c +++ b/target/linux/generic/files/drivers/net/phy/rtl8366_smi.c @@ -17,7 +17,7 @@ #include <linux/skbuff.h> #include <linux/rtl8366.h> -#ifdef CONFIG_RTL8366S_PHY_DEBUG_FS +#ifdef CONFIG_RTL8366_SMI_DEBUG_FS #include <linux/debugfs.h> #endif @@ -579,7 +579,7 @@ static int rtl8366_init_vlan(struct rtl8366_smi *smi) return rtl8366_enable_vlan(smi, 1); } -#ifdef CONFIG_RTL8366S_PHY_DEBUG_FS +#ifdef CONFIG_RTL8366_SMI_DEBUG_FS int rtl8366_debugfs_open(struct inode *inode, struct file *file) { file->private_data = inode->i_private; @@ -890,7 +890,7 @@ static void rtl8366_debugfs_remove(struct rtl8366_smi *smi) #else static inline void rtl8366_debugfs_init(struct rtl8366_smi *smi) {} static inline void rtl8366_debugfs_remove(struct rtl8366_smi *smi) {} -#endif /* CONFIG_RTL8366S_PHY_DEBUG_FS */ +#endif /* CONFIG_RTL8366_SMI_DEBUG_FS */ static int rtl8366_smi_mii_init(struct rtl8366_smi *smi) { diff --git a/target/linux/generic/files/drivers/net/phy/rtl8366_smi.h b/target/linux/generic/files/drivers/net/phy/rtl8366_smi.h index 5c60a30..ea5e6db 100644 --- a/target/linux/generic/files/drivers/net/phy/rtl8366_smi.h +++ b/target/linux/generic/files/drivers/net/phy/rtl8366_smi.h @@ -52,7 +52,7 @@ struct rtl8366_smi { int vlan4k_enabled; char buf[4096]; -#ifdef CONFIG_RTL8366S_PHY_DEBUG_FS +#ifdef CONFIG_RTL8366_SMI_DEBUG_FS struct dentry *debugfs_root; u16 dbg_reg; u8 dbg_vlan_4k_page; @@ -112,7 +112,7 @@ int rtl8366_reset_vlan(struct rtl8366_smi *smi); int rtl8366_enable_vlan(struct rtl8366_smi *smi, int enable); int rtl8366_enable_all_ports(struct rtl8366_smi *smi, int enable); -#ifdef CONFIG_RTL8366S_PHY_DEBUG_FS +#ifdef CONFIG_RTL8366_SMI_DEBUG_FS int rtl8366_debugfs_open(struct inode *inode, struct file *file); #endif |