Tag: 04309886935f7ab64d72d0624bbc7f766ea40713

staging: netlogic: Replace pr_* with netdev_*

Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> Replace generic pr_info and pr_err with netdev_info and netdev_err respectively 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) | – pr_err@p …

Continue reading