From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933579AbbCPSTh (ORCPT ); Mon, 16 Mar 2015 14:19:37 -0400 Received: from mail-gw1-out.broadcom.com ([216.31.210.62]:11383 "EHLO mail-gw1-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932091AbbCPSTe (ORCPT ); Mon, 16 Mar 2015 14:19:34 -0400 X-IronPort-AV: E=Sophos;i="5.11,410,1422950400"; d="scan'208";a="59731799" From: Scott Branden To: Russell King CC: , , , Scott Branden , Ray Jui Subject: [PATCH] ARM: amba: Increase number of IRQs Date: Mon, 16 Mar 2015 11:19:22 -0700 Message-ID: <1426529962-2204-1-git-send-email-sbranden@broadcom.com> X-Mailer: git-send-email 2.3.3 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The current AMBA bus only allows up to 9 IRQs per device. This is incorrect, as in peripherals like PL330 can have up to 32 IRQs. Increase AMBA_NR_IRQS from 9 to 32. Signed-off-by: Scott Branden Signed-off-by: Ray Jui --- include/linux/amba/bus.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/amba/bus.h b/include/linux/amba/bus.h index 50fc668..475e090 100644 --- a/include/linux/amba/bus.h +++ b/include/linux/amba/bus.h @@ -21,7 +21,7 @@ #include #include -#define AMBA_NR_IRQS 9 +#define AMBA_NR_IRQS 32 #define AMBA_CID 0xb105f00d #define CORESIGHT_CID 0xb105900d -- 2.3.3