fm10k: TRIVIAL fix typo of hardware
authorJacob Keller <jacob.e.keller@intel.com>
Fri, 16 Oct 2015 17:57:10 +0000 (10:57 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Sun, 6 Dec 2015 07:55:24 +0000 (23:55 -0800)
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Tested-by: Krishneil Singh <Krishneil.k.singh@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/fm10k/fm10k_pci.c

index 0cdb79e8b36e68a84634039b4128b3db04e7778a..15d8e10c250485e04097e7abb68b55de8adea0c2 100644 (file)
@@ -584,7 +584,7 @@ static void fm10k_configure_tx_ring(struct fm10k_intfc *interface,
        /* store tail pointer */
        ring->tail = &interface->uc_addr[FM10K_TDT(reg_idx)];
 
-       /* reset ntu and ntc to place SW in sync with hardwdare */
+       /* reset ntu and ntc to place SW in sync with hardware */
        ring->next_to_clean = 0;
        ring->next_to_use = 0;
 
@@ -690,7 +690,7 @@ static void fm10k_configure_rx_ring(struct fm10k_intfc *interface,
        /* store tail pointer */
        ring->tail = &interface->uc_addr[FM10K_RDT(reg_idx)];
 
-       /* reset ntu and ntc to place SW in sync with hardwdare */
+       /* reset ntu and ntc to place SW in sync with hardware */
        ring->next_to_clean = 0;
        ring->next_to_use = 0;
        ring->next_to_alloc = 0;
This page took 0.026064 seconds and 5 git commands to generate.