aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-01-20 09:30:36 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-01-20 09:30:36 +0000
commit6632b1ff3602e2b9c263ac30e8f0326fa808f8c8 (patch)
treec965ac8c27a2ee7027739f60e935dd5ac3dba5e9 /target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c
parente58b6f9e1159571d02337b52783585e70f527264 (diff)
downloadmaster-187ad058-6632b1ff3602e2b9c263ac30e8f0326fa808f8c8.tar.gz
master-187ad058-6632b1ff3602e2b9c263ac30e8f0326fa808f8c8.tar.bz2
master-187ad058-6632b1ff3602e2b9c263ac30e8f0326fa808f8c8.zip
rtl8366_smi: add Kconfig option for the debugfs stuff
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19243 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c')
-rw-r--r--target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c b/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c
index 1043b3d44e..a6ca06e67c 100644
--- a/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c
+++ b/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c
@@ -21,9 +21,7 @@
#include <linux/phy.h>
#include <linux/rtl8366_smi.h>
-/* #define DEBUG 1 */
-
-#ifdef DEBUG
+#ifdef CONFIG_RTL8366_SMI_DEBUG_FS
#include <linux/debugfs.h>
#endif
@@ -210,12 +208,12 @@ struct rtl8366_smi {
struct switch_dev dev;
int mii_irq[PHY_MAX_ADDR];
char buf[4096];
-#ifdef DEBUG
+#ifdef CONFIG_RTL8366_SMI_DEBUG_FS
struct dentry *debugfs_root;
#endif
};
-#ifdef DEBUG
+#ifdef CONFIG_RTL8366_SMI_DEBUG_FS
u16 g_dbg_reg;
#endif
@@ -972,7 +970,7 @@ static int rtl8366s_reset_vlan(struct rtl8366_smi *smi)
return 0;
}
-#ifdef DEBUG
+#ifdef CONFIG_RTL8366_SMI_DEBUG_FS
static int rtl8366_debugfs_open(struct inode *inode, struct file *file)
{
file->private_data = inode->i_private;
@@ -1197,7 +1195,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
+#endif /* CONFIG_RTL8366_SMI_DEBUG_FS */
static int rtl8366_global_reset_mibs(struct switch_dev *dev,
const struct switch_attr *attr,