Commit a18059ac authored by Anoop P A's avatar Anoop P A Committed by Ralf Baechle

MIPS: MSP: Fix MSP71xx bpci interrupt handler return value

Signed-off-by: default avatarAnoop P A <anoop.pa@gmail.com>
To: Ben Hutchings <ben@decadent.org.uk>
To: linux-mips@linux-mips.org
To: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/1804/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 39d30c13
...@@ -308,7 +308,7 @@ static struct resource pci_mem_resource = { ...@@ -308,7 +308,7 @@ static struct resource pci_mem_resource = {
* RETURNS: PCIBIOS_SUCCESSFUL - success * RETURNS: PCIBIOS_SUCCESSFUL - success
* *
****************************************************************************/ ****************************************************************************/
static int bpci_interrupt(int irq, void *dev_id) static irqreturn_t bpci_interrupt(int irq, void *dev_id)
{ {
struct msp_pci_regs *preg = (void *)PCI_BASE_REG; struct msp_pci_regs *preg = (void *)PCI_BASE_REG;
unsigned int stat = preg->if_status; unsigned int stat = preg->if_status;
...@@ -326,7 +326,7 @@ static int bpci_interrupt(int irq, void *dev_id) ...@@ -326,7 +326,7 @@ static int bpci_interrupt(int irq, void *dev_id)
/* write to clear all asserted interrupts */ /* write to clear all asserted interrupts */
preg->if_status = stat; preg->if_status = stat;
return PCIBIOS_SUCCESSFUL; return IRQ_HANDLED;
} }
/***************************************************************************** /*****************************************************************************
......
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