netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/4] net: atl1c: Fix a function name in print messages
@ 2021-09-25 13:40 Cai Huoqing
  2021-09-25 13:40 ` [PATCH v2 2/4] net: broadcom: Fix a function name in comments Cai Huoqing
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Cai Huoqing @ 2021-09-25 13:40 UTC (permalink / raw)
  To: caihuoqing
  Cc: Chris Snook, David S. Miller, Jakub Kicinski, Michael Chan,
	Francois Romieu, Steve Glendinning, netdev, linux-kernel

Use dma_map_single() instead of pci_map_single(),
because the pci function wrappers are not called here.

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
---
 drivers/net/ethernet/atheros/atl1c/atl1c_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/atheros/atl1c/atl1c_main.c b/drivers/net/ethernet/atheros/atl1c/atl1c_main.c
index 20c032ab631b..1c258e4ddc96 100644
--- a/drivers/net/ethernet/atheros/atl1c/atl1c_main.c
+++ b/drivers/net/ethernet/atheros/atl1c/atl1c_main.c
@@ -1847,7 +1847,7 @@ static int atl1c_alloc_rx_buffer(struct atl1c_adapter *adapter, u32 queue,
 			buffer_info->skb = NULL;
 			buffer_info->length = 0;
 			ATL1C_SET_BUFFER_STATE(buffer_info, ATL1C_BUFFER_FREE);
-			netif_warn(adapter, rx_err, adapter->netdev, "RX pci_map_single failed");
+			netif_warn(adapter, rx_err, adapter->netdev, "RX dma_map_single failed");
 			break;
 		}
 		buffer_info->dma = mapping;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-09-27 11:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-25 13:40 [PATCH v2 1/4] net: atl1c: Fix a function name in print messages Cai Huoqing
2021-09-25 13:40 ` [PATCH v2 2/4] net: broadcom: Fix a function name in comments Cai Huoqing
2021-09-25 13:40 ` [PATCH v2 3/4] net: sis: " Cai Huoqing
2021-09-25 13:40 ` [PATCH v2 4/4] net: smsc: Fix function names in print messages and comments Cai Huoqing
2021-09-27 11:50 ` [PATCH v2 1/4] net: atl1c: Fix a function name in print messages patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).