From patchwork Wed Aug 19 10:32:18 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 42566 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n7JAY9P8005994 for ; Wed, 19 Aug 2009 10:34:09 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751268AbZHSKeF (ORCPT ); Wed, 19 Aug 2009 06:34:05 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751403AbZHSKeF (ORCPT ); Wed, 19 Aug 2009 06:34:05 -0400 Received: from smtp.nokia.com ([192.100.105.134]:56935 "EHLO mgw-mx09.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751268AbZHSKeE (ORCPT ); Wed, 19 Aug 2009 06:34:04 -0400 Received: from vaebh105.NOE.Nokia.com (vaebh105.europe.nokia.com [10.160.244.31]) by mgw-mx09.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n7JAXCxF008437 for ; Wed, 19 Aug 2009 05:33:39 -0500 Received: from esebh102.NOE.Nokia.com ([172.21.138.183]) by vaebh105.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 19 Aug 2009 13:34:02 +0300 Received: from mgw-sa02.ext.nokia.com ([147.243.1.48]) by esebh102.NOE.Nokia.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Wed, 19 Aug 2009 13:34:02 +0300 Received: from localhost.localdomain (esdhcp04340.research.nokia.com [172.21.43.40]) by mgw-sa02.ext.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n7JAY0dp030173; Wed, 19 Aug 2009 13:34:01 +0300 From: Felipe Balbi To: linux-omap@vger.kernel.org Cc: Felipe Balbi Subject: [PATCH] arch: arm: omap: terminate ifndef Date: Wed, 19 Aug 2009 13:32:18 +0300 Message-Id: <1250677938-27955-1-git-send-email-felipe.balbi@nokia.com> X-Mailer: git-send-email 1.6.3.3.385.g60647 In-Reply-To: References: X-OriginalArrivalTime: 19 Aug 2009 10:34:02.0089 (UTC) FILETIME=[9183DD90:01CA20B8] X-Nokia-AV: Clean Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org There was a missing endif on cpu.h Signed-off-by: Felipe Balbi --- arch/arm/plat-omap/include/mach/cpu.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/plat-omap/include/mach/cpu.h b/arch/arm/plat-omap/include/mach/cpu.h index 61dbe90..7a5f9e8 100644 --- a/arch/arm/plat-omap/include/mach/cpu.h +++ b/arch/arm/plat-omap/include/mach/cpu.h @@ -422,3 +422,5 @@ IS_OMAP_TYPE(3430, 0x3430) int omap_chip_is(struct omap_chip_id oci); void omap2_check_revision(void); + +#endif /* __ASM_ARCH_OMAP_CPU_H */