From patchwork Sun Feb 4 20:18:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Angelo Dureghello X-Patchwork-Id: 869096 X-Patchwork-Delegate: jason.jin@freescale.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3zZMXF4DJNz9sBZ for ; Mon, 5 Feb 2018 07:19:57 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 2D0FDC21E30; Sun, 4 Feb 2018 20:19:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.4 required=5.0 tests=RCVD_IN_DNSWL_BLOCKED, RDNS_DYNAMIC autolearn=no autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 35334C21E30; Sun, 4 Feb 2018 20:19:34 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id D94D5C21E3E; Sun, 4 Feb 2018 20:18:21 +0000 (UTC) Received: from sysam.it (ec2-18-194-220-216.eu-central-1.compute.amazonaws.com [18.194.220.216]) by lists.denx.de (Postfix) with ESMTP id D0C6EC21E4B for ; Sun, 4 Feb 2018 20:18:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by sysam.it (Postfix) with ESMTP id A05F8202F8; Sun, 4 Feb 2018 20:18:19 +0000 (UTC) Received: from sysam.it ([127.0.0.1]) by localhost (sysam.it [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5FAMGlXjaGlq; Sun, 4 Feb 2018 20:18:19 +0000 (UTC) Received: from jerusalem (host135-232-dynamic.244-95-r.retail.telecomitalia.it [95.244.232.135]) by sysam.it (Postfix) with ESMTPSA id BF0C2202F6; Sun, 4 Feb 2018 20:18:18 +0000 (UTC) Date: Sun, 4 Feb 2018 21:18:17 +0100 From: Angelo Dureghello To: u-boot@lists.denx.de, angelo@sysam.it, alison.wang@freescale.com Message-ID: <20180204201817.GA14801@jerusalem> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.9.2 (2017-12-15) Subject: [U-Boot] [PATCH] m68k: fix mcf5441x total interrupt number X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Signed-off-by: Angelo Dureghello --- arch/m68k/include/asm/immap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/m68k/include/asm/immap.h b/arch/m68k/include/asm/immap.h index aca5f3ab2c..3840ac94ff 100644 --- a/arch/m68k/include/asm/immap.h +++ b/arch/m68k/include/asm/immap.h @@ -363,7 +363,7 @@ #endif #define CONFIG_SYS_INTR_BASE (MMAP_INTC0) -#define CONFIG_SYS_NUM_IRQS (128) +#define CONFIG_SYS_NUM_IRQS (192) #endif /* CONFIG_M54418 */