From patchwork Mon Oct 12 20:51:25 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: vikram pandita X-Patchwork-Id: 53208 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 n9CL9Rlp020406 for ; Mon, 12 Oct 2009 21:09:27 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756062AbZJLUyv (ORCPT ); Mon, 12 Oct 2009 16:54:51 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755549AbZJLUyv (ORCPT ); Mon, 12 Oct 2009 16:54:51 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:33617 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750745AbZJLUyu (ORCPT ); Mon, 12 Oct 2009 16:54:50 -0400 Received: from dlep33.itg.ti.com ([157.170.170.112]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id n9CKsEvo007102 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 12 Oct 2009 15:54:14 -0500 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep33.itg.ti.com (8.13.7/8.13.7) with ESMTP id n9CKsBNZ015928; Mon, 12 Oct 2009 15:54:11 -0500 (CDT) Received: from vip-tid (lta0307903-128247075087.am.dhcp.ti.com [128.247.75.87]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id n9CKsBZ19803; Mon, 12 Oct 2009 15:54:11 -0500 (CDT) Received: from vip-tid (localhost.localdomain [127.0.0.1]) by vip-tid (Postfix) with ESMTP id 1C56D29C9DC; Mon, 12 Oct 2009 15:51:29 -0500 (CDT) Received: (from vikram@localhost) by vip-tid (8.14.3/8.14.3/Submit) id n9CKpSER026797; Mon, 12 Oct 2009 15:51:28 -0500 X-Authentication-Warning: vip-tid: vikram set sender to vikram.pandita@ti.com using -f From: Vikram Pandita To: nm@ti.com Cc: linux-omap@vger.kernel.org, Vikram Pandita Subject: [PATCH] [RFC] omap: 3630: default cpu_is_omap3630 to zero Date: Mon, 12 Oct 2009 15:51:25 -0500 Message-Id: <1255380685-26765-1-git-send-email-vikram.pandita@ti.com> X-Mailer: git-send-email 1.6.5.rc1.19.g8426 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org diff --git a/arch/arm/plat-omap/include/mach/cpu.h b/arch/arm/plat-omap/include/mach/cpu.h index da9e8f8..940946e 100644 --- a/arch/arm/plat-omap/include/mach/cpu.h +++ b/arch/arm/plat-omap/include/mach/cpu.h @@ -322,6 +322,7 @@ IS_OMAP_TYPE(3430, 0x3430) #define cpu_is_omap2423() 0 #define cpu_is_omap2430() 0 #define cpu_is_omap3430() 0 +#define cpu_is_omap3630() 0 /* * Whether we have MULTI_OMAP1 or not, we still need to distinguish @@ -386,6 +387,7 @@ IS_OMAP_TYPE(3430, 0x3430) (omap3_has_sgx()) & \ (!omap3_has_iva())) # define cpu_is_omap3530 (cpu_is_omap3430()) +# undef cpu_is_omap3630() # define cpu_is_omap3630() is_omap363x() #endif