Commit 907af425 authored by Harsh Kumar's avatar Harsh Kumar Committed by Greg Kroah-Hartman

Staging: winbond: Typo corrections in comments

Few typo corrections in comments
Signed-off-by: default avatarHarsh Kumar <harsh1kumar@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8c6c4460
...@@ -41,7 +41,7 @@ static void Wb35Tx_complete(struct urb * pUrb) ...@@ -41,7 +41,7 @@ static void Wb35Tx_complete(struct urb * pUrb)
pWb35Tx->TxSendIndex++; pWb35Tx->TxSendIndex++;
pWb35Tx->TxSendIndex %= MAX_USB_TX_BUFFER_NUMBER; pWb35Tx->TxSendIndex %= MAX_USB_TX_BUFFER_NUMBER;
if (pHwData->SurpriseRemove) /* Let WbWlanHalt to handle surprise remove */ if (pHwData->SurpriseRemove) /* Let WbWlanHalt handle surprise remove */
goto error; goto error;
if (pWb35Tx->tx_halt) if (pWb35Tx->tx_halt)
...@@ -151,13 +151,13 @@ void Wb35Tx_stop(struct hw_data * pHwData) ...@@ -151,13 +151,13 @@ void Wb35Tx_stop(struct hw_data * pHwData)
/* Try to cancel the Trp of EP2 */ /* Try to cancel the Trp of EP2 */
if (pWb35Tx->EP2vm_state == VM_RUNNING) if (pWb35Tx->EP2vm_state == VM_RUNNING)
/* Only use unlink, let Wb35Tx_destroy to free them */ /* Only use unlink, let Wb35Tx_destroy free them */
usb_unlink_urb( pWb35Tx->Tx2Urb ); usb_unlink_urb( pWb35Tx->Tx2Urb );
pr_debug("EP2 Tx stop\n"); pr_debug("EP2 Tx stop\n");
/* Try to cancel the Irp of EP4 */ /* Try to cancel the Irp of EP4 */
if (pWb35Tx->EP4vm_state == VM_RUNNING) if (pWb35Tx->EP4vm_state == VM_RUNNING)
/* Only use unlink, let Wb35Tx_destroy to free them */ /* Only use unlink, let Wb35Tx_destroy free them */
usb_unlink_urb( pWb35Tx->Tx4Urb ); usb_unlink_urb( pWb35Tx->Tx4Urb );
pr_debug("EP4 Tx stop\n"); pr_debug("EP4 Tx stop\n");
} }
...@@ -216,7 +216,7 @@ static void Wb35Tx_EP2VM_complete(struct urb * pUrb) ...@@ -216,7 +216,7 @@ static void Wb35Tx_EP2VM_complete(struct urb * pUrb)
pWb35Tx->EP2VM_status = pUrb->status; pWb35Tx->EP2VM_status = pUrb->status;
/* For Linux 2.4. Interrupt will always trigger */ /* For Linux 2.4. Interrupt will always trigger */
if (pHwData->SurpriseRemove) /* Let WbWlanHalt to handle surprise remove */ if (pHwData->SurpriseRemove) /* Let WbWlanHalt handle surprise remove */
goto error; goto error;
if (pWb35Tx->tx_halt) if (pWb35Tx->tx_halt)
......
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