swconfig: remove old debugging stuff

SVN-Revision: 15301
This commit is contained in:
Felix Fietkau 2009-04-20 18:57:30 +00:00
parent fc75e596d2
commit cd80e16a80
1 changed files with 0 additions and 2 deletions

View File

@ -69,7 +69,6 @@ swconfig_get_vlan_ports(struct switch_dev *dev, struct switch_attr *attr, struct
return -EOPNOTSUPP;
ret = dev->get_vlan_ports(dev, val);
printk("SET PORTS %d\n", val->len);
return ret;
}
@ -93,7 +92,6 @@ swconfig_set_vlan_ports(struct switch_dev *dev, struct switch_attr *attr, struct
if (!dev->set_vlan_ports)
return -EOPNOTSUPP;
printk("SET PORTS %d\n", val->len);
return dev->set_vlan_ports(dev, val);
}