ionic: add function tag to debug string
authorShannon Nelson <snelson@pensando.io>
Tue, 27 Jul 2021 17:43:34 +0000 (10:43 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 27 Jul 2021 19:15:22 +0000 (20:15 +0100)
Prefix the log output with the function string as in other
debug messages.

Signed-off-by: Shannon Nelson <snelson@pensando.io>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/pensando/ionic/ionic_phc.c

index a87c87e..736ebc5 100644 (file)
@@ -119,8 +119,8 @@ static int ionic_lif_hwstamp_set_ts_config(struct ionic_lif *lif,
                config->rx_filter = HWTSTAMP_FILTER_ALL;
        }
 
-       dev_dbg(ionic->dev, "config_rx_filter %d rx_filt %#llx rx_all %d\n",
-               config->rx_filter, rx_filt, rx_all);
+       dev_dbg(ionic->dev, "%s: config_rx_filter %d rx_filt %#llx rx_all %d\n",
+               __func__, config->rx_filter, rx_filt, rx_all);
 
        if (tx_mode) {
                err = ionic_lif_create_hwstamp_txq(lif);