diff options
author | Sameer Saurabh <ssaurabh@marvell.com> | 2021-11-29 16:28:29 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-11-29 17:24:22 +0300 |
commit | 060a0fb721ec5bbe02ae322e434ec87dc25ed6e9 (patch) | |
tree | e697b7c5134d6c857213d4f129957f4efa9ff204 /drivers/net/ethernet/aquantia | |
parent | 2087ced0fc3a6d45203925750a2b1bcd5402e639 (diff) | |
download | linux-060a0fb721ec5bbe02ae322e434ec87dc25ed6e9.tar.xz |
atlantic: Remove warn trace message.
Remove the warn trace message - it's not a correct check here, because
the function can still be called on the device in DOWN state
Fixes: 508f2e3dce454 ("net: atlantic: split rx and tx per-queue stats")
Signed-off-by: Sameer Saurabh <ssaurabh@marvell.com>
Signed-off-by: Sudarsana Reddy Kalluru <skalluru@marvell.com>
Signed-off-by: Igor Russkikh <irusskikh@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/aquantia')
-rw-r--r-- | drivers/net/ethernet/aquantia/atlantic/aq_vec.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_vec.c b/drivers/net/ethernet/aquantia/atlantic/aq_vec.c index d281322d7dd2..f4774cf051c9 100644 --- a/drivers/net/ethernet/aquantia/atlantic/aq_vec.c +++ b/drivers/net/ethernet/aquantia/atlantic/aq_vec.c @@ -362,9 +362,6 @@ unsigned int aq_vec_get_sw_stats(struct aq_vec_s *self, const unsigned int tc, u { unsigned int count; - WARN_ONCE(!aq_vec_is_valid_tc(self, tc), - "Invalid tc %u (#rx=%u, #tx=%u)\n", - tc, self->rx_rings, self->tx_rings); if (!aq_vec_is_valid_tc(self, tc)) return 0; |