parent = np->parent;
err = 0;
if (!(parent->flags & PARENT_FLGS_CLS_HWINIT)) {
- netif_printk(np, probe, KERN_DEBUG, np->dev,
- "%s() Initting hw on port %u\n",
- __func__, np->port);
if (np->parent->plat_type != PLAT_TYPE_NIU) {
fflp_reset(np);
fflp_set_timings(np);
vlan_tbl_clear(np);
- netif_printk(np, probe, KERN_DEBUG, np->dev,
- "%s() Success\n", __func__);
parent->flags |= PARENT_FLGS_CLS_HWINIT;
}
out:
v2 = nr64(LDSV2(ldg));
if (netif_msg_intr(np))
- pr_cont(" v0[%llx] v1[%llx] v2[%llx]",
+ pr_cont(" v0[%llx] v1[%llx] v2[%llx]\n",
(unsigned long long) v0,
(unsigned long long) v1,
(unsigned long long) v2);
- pr_cont("\n");
-
if (unlikely(!v0 && !v1 && !v2)) {
spin_unlock_irqrestore(&np->lock, flags);
return IRQ_NONE;
}
}
- netif_printk(np, probe, KERN_DEBUG, np->dev,
- "%s() port[%d] num_ports[%d]\n",
- __func__, np->port, parent->num_ports);
if (np->port >= parent->num_ports)
return -ENODEV;
struct niu_parent *parent = np->parent;
int err, i;
- netif_printk(np, probe, KERN_DEBUG, np->dev,
- "%s() port_phy[%08x]\n", __func__, parent->port_phy);
-
if (parent->port_phy == PORT_PHY_UNKNOWN) {
err = walk_phys(np, parent);
if (err)
{
struct niu_classifier *cp = &np->clas;
- netif_printk(np, probe, KERN_DEBUG, np->dev,
- "%s() num_tcam(%d)\n",
- __func__, np->parent->tcam_num_entries);
-
cp->tcam_top = (u16) np->port;
cp->tcam_sz = np->parent->tcam_num_entries / np->parent->num_ports;
cp->h1_init = 0xffffffff;
struct niu_parent *p;
int i;
- netif_printk(np, probe, KERN_DEBUG, np->dev,
- "%s() Creating new parent\n", __func__);
-
plat_dev = platform_device_register_simple("niu", niu_parent_index,
NULL, 0);
if (IS_ERR(plat_dev))
struct niu_parent *p, *tmp;
int port = np->port;
- netif_printk(np, probe, KERN_DEBUG, np->dev,
- "%s() platform_type[%u] port[%u]\n",
- __func__, ptype, port);
-
mutex_lock(&niu_parent_lock);
p = NULL;
list_for_each_entry(tmp, &niu_parent_list, list) {