Commit 513ff863 authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Greg Kroah-Hartman
Browse files

staging: octeon: use passed interrupt number in the handler



Use passed interrupt number in the handler, so we can avoid using
the global variable.

Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 287faa5e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -47,16 +47,16 @@ static struct napi_struct cvm_oct_napi;

/**
 * cvm_oct_do_interrupt - interrupt handler.
 * @cpl: Interrupt number. Unused
 * @irq: Interrupt number.
 * @dev_id: Cookie to identify the device. Unused
 *
 * The interrupt occurs whenever the POW has packets in our group.
 *
 */
static irqreturn_t cvm_oct_do_interrupt(int cpl, void *dev_id)
static irqreturn_t cvm_oct_do_interrupt(int irq, void *dev_id)
{
	/* Disable the IRQ and start napi_poll. */
	disable_irq_nosync(OCTEON_IRQ_WORKQ0 + pow_receive_group);
	disable_irq_nosync(irq);
	napi_schedule(&cvm_oct_napi);

	return IRQ_HANDLED;