staging: fsl-dpaa2/eth: Use debug level for message
authorIoana Radulescu <ruxandra.radulescu@nxp.com>
Fri, 23 Mar 2018 15:23:36 +0000 (10:23 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 Mar 2018 15:42:27 +0000 (16:42 +0100)
The driver remove() function prints a message when the operation
is completed. Make this a debug level message to avoid polluting
the kernel log wih too much information.

Signed-off-by: Ioana Radulescu <ruxandra.radulescu@nxp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fsl-dpaa2/ethernet/dpaa2-eth.c

index 14bd8fe..553678d 100644 (file)
@@ -2578,7 +2578,7 @@ static int dpaa2_eth_remove(struct fsl_mc_device *ls_dev)
        dev_set_drvdata(dev, NULL);
        free_netdev(net_dev);
 
-       dev_info(net_dev->dev.parent, "Removed interface %s\n", net_dev->name);
+       dev_dbg(net_dev->dev.parent, "Removed interface %s\n", net_dev->name);
 
        return 0;
 }