From bc255876147cd19d2eef0a46c100d86f7a1c91f1 Mon Sep 17 00:00:00 2001 From: Benjamin Herrenschmidt Date: Mon, 14 Nov 2016 13:06:03 +1100 Subject: psi: Don't register more interrupts than the HW supports On P9, the HW only has 14 interrupts. Trying to register 16 causes a checkstop when we try to initialize the 2 missing ones. Signed-off-by: Benjamin Herrenschmidt Signed-off-by: Stewart Smith --- include/psi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/psi.h b/include/psi.h index 5982adc..1a3e649 100644 --- a/include/psi.h +++ b/include/psi.h @@ -159,7 +159,7 @@ #define P9_PSI_IRQ_SBE_I2C 11 #define P9_PSI_IRQ_DIO 12 #define P9_PSI_IRQ_PSU 13 -#define P9_PSI_NUM_IRQS 16 +#define P9_PSI_NUM_IRQS 14 -- cgit v1.1