FDDI: defxx: Fix function names in coments
authorCai Huoqing <caihuoqing@baidu.com>
Sat, 25 Sep 2021 12:52:07 +0000 (20:52 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 27 Sep 2021 11:29:33 +0000 (12:29 +0100)
Use dma_xxx_xxx() instead of pci_xxx_xxx(),
because the pci function wrappers are not called here.

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/fddi/defxx.c

index 6d1e3f49a3d3daa9f46f1dfbd529d940850e7ab6..5810e84737894c6f578b113cd4e22308b0ac3650 100644 (file)
@@ -1028,7 +1028,7 @@ static void dfx_bus_config_check(DFX_board_t *bp)
  *                                             or read adapter MAC address
  *
  * Assumptions:
- *   Memory allocated from pci_alloc_consistent() call is physically
+ *   Memory allocated from dma_alloc_coherent() call is physically
  *   contiguous, locked memory.
  *
  * Side Effects:
@@ -3249,7 +3249,7 @@ static void dfx_rcv_queue_process(
  *   is contained in a single physically contiguous buffer
  *   in which the virtual address of the start of packet
  *   (skb->data) can be converted to a physical address
- *   by using pci_map_single().
+ *   by using dma_map_single().
  *
  *   Since the adapter architecture requires a three byte
  *   packet request header to prepend the start of packet,
@@ -3402,7 +3402,7 @@ static netdev_tx_t dfx_xmt_queue_pkt(struct sk_buff *skb,
         *                      skb->data.
         *               6. The physical address of the start of packet
         *                      can be determined from the virtual address
-        *                      by using pci_map_single() and is only 32-bits
+        *                      by using dma_map_single() and is only 32-bits
         *                      wide.
         */