Re: [PATCH] rdma: amso1100: c2_provider: Use netdev_dbg()

2016-02-11 Thread Doug Ledford
On 02/06/2016 10:11 AM, Amitoj Kaur Chawla wrote: > Replace generic pr_debug() with netdev_dbg() for net devices. > > Found using Coccinelle. The semantic patch used to find this is as > follows: > > // > @@ > expression e; > identifier f,i; > position p; > @@ > > f(...,struct net_device *i,...)

[PATCH] rdma: amso1100: c2_provider: Use netdev_dbg()

2016-02-06 Thread Amitoj Kaur Chawla
Replace generic pr_debug() with netdev_dbg() for net devices. Found using Coccinelle. The semantic patch used to find this is as follows: // @@ expression e; identifier f,i; position p; @@ f(...,struct net_device *i,...) { ... - pr_debug@p(e); + netdev_dbg(i, e); ... } // Signed-off-by: A