From eaad52d2958b32df9fce7c3a1e8d00b8a8b74089 Mon Sep 17 00:00:00 2001 From: Russell King Date: Mon, 27 Jan 2020 14:00:12 +0000 Subject: net: dsa: mv88e6xxx: debugfs hacks to fix the compile This is the problem with out-of-tree maintained patches; they break, sometimes requiring substantial rework. It's all very well promising to publish new versions as that happens, but it causes pain when they aren't published in a timely manner. Hence this hack. Signed-off-by: Russell King --- drivers/net/dsa/mv88e6xxx/mv88e6xxx_debugfs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/net/dsa/mv88e6xxx/mv88e6xxx_debugfs.c b/drivers/net/dsa/mv88e6xxx/mv88e6xxx_debugfs.c index 931e769fe9ce..4005a4760884 100644 --- a/drivers/net/dsa/mv88e6xxx/mv88e6xxx_debugfs.c +++ b/drivers/net/dsa/mv88e6xxx/mv88e6xxx_debugfs.c @@ -668,6 +668,7 @@ static const struct file_operations mv88e6xxx_vlan_table_fops = { static int mv88e6xxx_pvt_show(struct seq_file *s, void *p) { +#if 0 struct mv88e6xxx_chip *chip = s->private; struct dsa_switch_tree *dst = chip->ds->dst; int port, src_dev, src_port; @@ -716,8 +717,10 @@ static int mv88e6xxx_pvt_show(struct seq_file *s, void *p) unlock: mutex_unlock(&chip->reg_lock); - return err; +#else + return 0; +#endif } static ssize_t mv88e6xxx_pvt_write(struct file *file, const char __user *buf, -- cgit