aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorIan Munsie <imunsie@au1.ibm.com>2015-02-04 19:10:38 +1100
committerMichael Ellerman <mpe@ellerman.id.au>2015-02-06 11:17:27 +1100
commita6130ed253a931d2169c26ab0958d81b0dce4d6e (patch)
tree5ae9e1c79f52a7702c92af66bad487c4e5341701 /drivers/misc
parentcxl: Fail AFU initialisation if an invalid configuration record is found (diff)
downloadlinux-dev-a6130ed253a931d2169c26ab0958d81b0dce4d6e.tar.xz
linux-dev-a6130ed253a931d2169c26ab0958d81b0dce4d6e.zip
cxl: Add missing return statement after handling AFU errror
We were missing a return statement in the PSL interrupt handler in the case of an AFU error, which would trigger an "Unhandled CXL PSL IRQ" warning. We do actually handle these type of errors (by notifying userspace), so add the missing return IRQ_HANDLED so we don't throw unecessary warnings. Signed-off-by: Ian Munsie <imunsie@au1.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/cxl/irq.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/cxl/irq.c b/drivers/misc/cxl/irq.c
index f0836472403b..c8929c526691 100644
--- a/drivers/misc/cxl/irq.c
+++ b/drivers/misc/cxl/irq.c
@@ -170,6 +170,7 @@ static irqreturn_t cxl_irq(int irq, void *data, struct cxl_irq_info *irq_info)
}
cxl_ack_irq(ctx, CXL_PSL_TFC_An_A, 0);
+ return IRQ_HANDLED;
}
if (dsisr & CXL_PSL_DSISR_An_OC)
pr_devel("CXL interrupt: OS Context Warning\n");