From patchwork Tue Oct 20 10:48:57 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 54925 X-Patchwork-Delegate: tony@atomide.com 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 n9KAnBeq020130 for ; Tue, 20 Oct 2009 10:49:11 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751811AbZJTKs6 (ORCPT ); Tue, 20 Oct 2009 06:48:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751837AbZJTKs6 (ORCPT ); Tue, 20 Oct 2009 06:48:58 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:47304 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751696AbZJTKs5 (ORCPT ); Tue, 20 Oct 2009 06:48:57 -0400 Received: from dlep36.itg.ti.com ([157.170.170.91]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id n9KAn1UY007750 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 20 Oct 2009 05:49:01 -0500 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep36.itg.ti.com (8.13.8/8.13.8) with ESMTP id n9KAn1XD002673; Tue, 20 Oct 2009 05:49:01 -0500 (CDT) Received: from senorita (senorita.am.dhcp.ti.com [128.247.75.1]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id n9KAn1Z00880; Tue, 20 Oct 2009 05:49:01 -0500 (CDT) Received: by senorita (Postfix, from userid 1000) id 223D9C1A1; Tue, 20 Oct 2009 05:49:01 -0500 (CDT) From: Nishanth Menon To: linux-omap Cc: Nishanth Menon Subject: [PATCH 1/2] OMAP3: move check_revision above check_features Date: Tue, 20 Oct 2009 05:48:57 -0500 Message-Id: <1256035738-17571-2-git-send-email-nm@ti.com> X-Mailer: git-send-email 1.6.3.3 In-Reply-To: <1256035738-17571-1-git-send-email-nm@ti.com> References: <1256035738-17571-1-git-send-email-nm@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 1c15112..702d3b4 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c @@ -328,8 +328,8 @@ void __init omap2_check_revision(void) if (cpu_is_omap24xx()) omap24xx_check_revision(); else if (cpu_is_omap34xx()) { - omap3_check_features(); omap3_check_revision(); + omap3_check_features(); omap3_cpuinfo(); } else if (cpu_is_omap44xx()) {