staging: octeon: Fix typo in staging/octeon

Correct spelling typo in staging/octeon

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Masanari Iida 2013-09-16 11:44:08 +09:00 committed by Greg Kroah-Hartman
parent a9dfd408a9
commit 811a751984
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ struct cvm_oct_core_state {
int baseline_cores; int baseline_cores;
/* /*
* The number of additional cores that could be processing * The number of additional cores that could be processing
* input packtes. * input packets.
*/ */
atomic_t available_cores; atomic_t available_cores;
cpumask_t cpu_state; cpumask_t cpu_state;
@ -526,7 +526,7 @@ void cvm_oct_rx_initialize(void)
cvm_oct_napi_poll, rx_napi_weight); cvm_oct_napi_poll, rx_napi_weight);
napi_enable(&cvm_oct_napi[i].napi); napi_enable(&cvm_oct_napi[i].napi);
} }
/* Register an IRQ hander for to receive POW interrupts */ /* Register an IRQ handler to receive POW interrupts */
i = request_irq(OCTEON_IRQ_WORKQ0 + pow_receive_group, i = request_irq(OCTEON_IRQ_WORKQ0 + pow_receive_group,
cvm_oct_do_interrupt, 0, "Ethernet", cvm_oct_device); cvm_oct_do_interrupt, 0, "Ethernet", cvm_oct_device);

View File

@ -709,7 +709,7 @@ void cvm_oct_tx_initialize(void)
/* Disable the interrupt. */ /* Disable the interrupt. */
cvmx_write_csr(CVMX_CIU_TIMX(1), 0); cvmx_write_csr(CVMX_CIU_TIMX(1), 0);
/* Register an IRQ hander for to receive CIU_TIMX(1) interrupts */ /* Register an IRQ handler to receive CIU_TIMX(1) interrupts */
i = request_irq(OCTEON_IRQ_TIMER1, i = request_irq(OCTEON_IRQ_TIMER1,
cvm_oct_tx_cleanup_watchdog, 0, cvm_oct_tx_cleanup_watchdog, 0,
"Ethernet", cvm_oct_device); "Ethernet", cvm_oct_device);