From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758891AbZAGNfu (ORCPT ); Wed, 7 Jan 2009 08:35:50 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754159AbZAGNfj (ORCPT ); Wed, 7 Jan 2009 08:35:39 -0500 Received: from mx1.wp.pl ([212.77.101.5]:51926 "EHLO mx1.wp.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754634AbZAGNfj (ORCPT ); Wed, 7 Jan 2009 08:35:39 -0500 From: Stanislaw Gruszka To: linux-kernel@vger.kernel.org Subject: [PATCH] ARM / AT91: fix NR_AIC_IRQS undeclared Date: Wed, 7 Jan 2009 14:35:02 +0100 User-Agent: KMail/1.9.6 (enterprise 0.20070907.709405) Cc: Andrew Victor , Russell King MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200901071435.03123.stf_xl@wp.pl> X-WP-AV: skaner antywirusowy poczty Wirtualnej Polski S. A. X-WP-SPAM: NO 0000000 [ceNE] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix compilation error: arch/arm/mach-at91/at91sam9263.c:312: error: 'NR_AIC_IRQS' undeclared here (not in a function) Signed-off-by: Stanislaw Gruszka diff --git a/arch/arm/mach-at91/at91sam9263.c b/arch/arm/mach-at91/at91sam9263.c index ada4b67..24a9e44 100644 --- a/arch/arm/mach-at91/at91sam9263.c +++ b/arch/arm/mach-at91/at91sam9263.c @@ -19,6 +19,7 @@ #include #include #include +#include #include "generic.h" #include "clock.h"