Commit 868bf442 authored by Masanari Iida's avatar Masanari Iida Committed by Greg Kroah-Hartman

staging: et131x: Fix typo in et131x

This patch fix spelling typos in comments and printk
within et131x.
Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 99284f25
...@@ -285,7 +285,7 @@ struct fbr_lookup { ...@@ -285,7 +285,7 @@ struct fbr_lookup {
dma_addr_t buffsize; dma_addr_t buffsize;
}; };
/* struct rx_ring is the sructure representing the adaptor's local /* struct rx_ring is the structure representing the adaptor's local
* reference(s) to the rings * reference(s) to the rings
*/ */
struct rx_ring { struct rx_ring {
...@@ -1941,7 +1941,7 @@ static void et131x_disable_interrupts(struct et131x_adapter *adapter) ...@@ -1941,7 +1941,7 @@ static void et131x_disable_interrupts(struct et131x_adapter *adapter)
/* et131x_tx_dma_disable - Stop of Tx_DMA on the ET1310 */ /* et131x_tx_dma_disable - Stop of Tx_DMA on the ET1310 */
static void et131x_tx_dma_disable(struct et131x_adapter *adapter) static void et131x_tx_dma_disable(struct et131x_adapter *adapter)
{ {
/* Setup the tramsmit dma configuration register */ /* Setup the transmit dma configuration register */
writel(ET_TXDMA_CSR_HALT | ET_TXDMA_SNGL_EPKT, writel(ET_TXDMA_CSR_HALT | ET_TXDMA_SNGL_EPKT,
&adapter->regs->txdma.csr); &adapter->regs->txdma.csr);
} }
...@@ -4023,7 +4023,7 @@ static void et131x_isr_handler(struct work_struct *work) ...@@ -4023,7 +4023,7 @@ static void et131x_isr_handler(struct work_struct *work)
if (status & ET_INTR_RXDMA_STAT_LOW) { if (status & ET_INTR_RXDMA_STAT_LOW) {
/* Same idea as with the two Free Buffer Rings. Packets going /* Same idea as with the two Free Buffer Rings. Packets going
* from the network to the host each consume a free buffer * from the network to the host each consume a free buffer
* resource and a packet status resource. These resoures are * resource and a packet status resource. These resources are
* passed to the OS. When the OS is done with the resources, * passed to the OS. When the OS is done with the resources,
* they need to be returned to the ET1310. This is one method * they need to be returned to the ET1310. This is one method
* of returning the resources. * of returning the resources.
...@@ -4631,7 +4631,7 @@ static int et131x_pci_setup(struct pci_dev *pdev, ...@@ -4631,7 +4631,7 @@ static int et131x_pci_setup(struct pci_dev *pdev,
/* Allocate DMA memory */ /* Allocate DMA memory */
rc = et131x_adapter_memory_alloc(adapter); rc = et131x_adapter_memory_alloc(adapter);
if (rc < 0) { if (rc < 0) {
dev_err(&pdev->dev, "Could not alloc adapater memory (DMA)\n"); dev_err(&pdev->dev, "Could not alloc adapter memory (DMA)\n");
goto err_iounmap; goto err_iounmap;
} }
......
...@@ -755,7 +755,7 @@ struct txmac_regs { /* Location: */ ...@@ -755,7 +755,7 @@ struct txmac_regs { /* Location: */
*/ */
/* /*
* structure for Unicast Paket Filter Address 1 reg in rxmac address map * structure for Unicast Packet Filter Address 1 reg in rxmac address map
* located at address 0x4068 * located at address 0x4068
* *
* 31-24: addr1_3 * 31-24: addr1_3
...@@ -769,7 +769,7 @@ struct txmac_regs { /* Location: */ ...@@ -769,7 +769,7 @@ struct txmac_regs { /* Location: */
#define ET_RX_UNI_PF_ADDR1_5_SHIFT 8 #define ET_RX_UNI_PF_ADDR1_5_SHIFT 8
/* /*
* structure for Unicast Paket Filter Address 2 reg in rxmac address map * structure for Unicast Packet Filter Address 2 reg in rxmac address map
* located at address 0x406C * located at address 0x406C
* *
* 31-24: addr2_3 * 31-24: addr2_3
...@@ -783,7 +783,7 @@ struct txmac_regs { /* Location: */ ...@@ -783,7 +783,7 @@ struct txmac_regs { /* Location: */
#define ET_RX_UNI_PF_ADDR2_5_SHIFT 8 #define ET_RX_UNI_PF_ADDR2_5_SHIFT 8
/* /*
* structure for Unicast Paket Filter Address 1 & 2 reg in rxmac address map * structure for Unicast Packet Filter Address 1 & 2 reg in rxmac address map
* located at address 0x4070 * located at address 0x4070
* *
* 31-24: addr2_1 * 31-24: addr2_1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment