diff options
author | Richard Cochran <richardcochran@gmail.com> | 2011-09-20 01:25:42 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-09-29 00:32:04 -0400 |
commit | 02715ed2e7b71569ed6e61f0b23b0736a509913d (patch) | |
tree | 282c0f1daa4f7b6d23f4bef5eb4d7fa09c30927c /drivers/net/phy | |
parent | f75159e9936143177b442afc78150b7a7ad8aa07 (diff) | |
download | linux-3.10-02715ed2e7b71569ed6e61f0b23b0736a509913d.tar.gz linux-3.10-02715ed2e7b71569ed6e61f0b23b0736a509913d.tar.bz2 linux-3.10-02715ed2e7b71569ed6e61f0b23b0736a509913d.zip |
dp83640: reduce driver noise
The driver has two warning messages that might be triggered
by normal use cases. When they appear, the messages give the
impression of a never ending series of errors.
This commit changes them to debug messages instead.
Signed-off-by: Richard Cochran <richard.cochran@omicron.at>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/dp83640.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/dp83640.c b/drivers/net/phy/dp83640.c index cb6e0b486b1..edd7304773e 100644 --- a/drivers/net/phy/dp83640.c +++ b/drivers/net/phy/dp83640.c @@ -589,7 +589,7 @@ static void decode_rxts(struct dp83640_private *dp83640, prune_rx_ts(dp83640); if (list_empty(&dp83640->rxpool)) { - pr_warning("dp83640: rx timestamp pool is empty\n"); + pr_debug("dp83640: rx timestamp pool is empty\n"); goto out; } rxts = list_first_entry(&dp83640->rxpool, struct rxts, list); @@ -612,7 +612,7 @@ static void decode_txts(struct dp83640_private *dp83640, skb = skb_dequeue(&dp83640->tx_queue); if (!skb) { - pr_warning("dp83640: have timestamp but tx_queue empty\n"); + pr_debug("dp83640: have timestamp but tx_queue empty\n"); return; } ns = phy2txts(phy_txts); |