From: Mugunthan V N Date: Mon, 8 Jul 2013 10:34:38 +0000 (+0530) Subject: drivers: net: cpsw: Enable statistics for all port X-Git-Tag: v2013.10-rc1~22^2~67 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=454ac635257f78a369015bde7795ddf979d64e12;p=karo-tx-uboot.git drivers: net: cpsw: Enable statistics for all port Enable hardware statistics for all ports, enabling only to host port is useless Signed-off-by: Mugunthan V N --- diff --git a/drivers/net/cpsw.c b/drivers/net/cpsw.c index dc0a2be23b..f1e9f720a7 100644 --- a/drivers/net/cpsw.c +++ b/drivers/net/cpsw.c @@ -772,6 +772,7 @@ static int cpsw_init(struct eth_device *dev, bd_t *bis) /* enable statistics collection only on the host port */ __raw_writel(BIT(priv->host_port), &priv->regs->stat_port_en); + __raw_writel(0x7, &priv->regs->stat_port_en); cpsw_ale_port_state(priv, priv->host_port, ALE_PORT_STATE_FORWARD);