From patchwork Mon Jul 4 19:33:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?UmFwaGHDq2wgQXNzw6luYXQ=?= X-Patchwork-Id: 942952 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p64Jtmbe021922 for ; Mon, 4 Jul 2011 19:55:48 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751784Ab1GDTzr (ORCPT ); Mon, 4 Jul 2011 15:55:47 -0400 Received: from roc.holo.8d.com ([64.254.227.115]:48786 "EHLO roc.holo.8d.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751738Ab1GDTzq (ORCPT ); Mon, 4 Jul 2011 15:55:46 -0400 Received: from raph.usine.8d.com ([192.168.142.55]) by roc.holo.8d.com with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Qdotr-0001Kb-Ui for linux-omap@vger.kernel.org; Mon, 04 Jul 2011 15:33:44 -0400 Message-ID: <4E121597.9020904@8d.com> Date: Mon, 04 Jul 2011 15:33:43 -0400 From: =?ISO-8859-1?Q?Rapha=EBl_Ass=E9nat?= User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.16) Gecko/20110505 Icedove/3.0.11 MIME-Version: 1.0 To: linux-omap@vger.kernel.org Subject: [PATCH 3/5] am3505/3517: Skip TWL X-Enigmail-Version: 1.0.1 X-Spam-Score: -2.6 X-Spam-Level: -- X-Spam-Report: -2.6 points, 5.0 required autolearn=ham -2.6 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 04 Jul 2011 19:55:48 +0000 (UTC) In cpu.h, OMAP35XX_CLASS is currently defined as 0x35000034. the cpu_is_omap34xx() return 1 even on am3505 and am3517. I'm not sure if the CPU class bits should be changed to 0x35 (redefining OMAP35XX_CLASS to 0x35000035). So instead, I'm adding code to explicitely ignore am3505 and am3517. Signed-off-by: Raphael Assenat --- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/mach-omap2/omap_twl.c b/arch/arm/mach-omap2/omap_twl.c index 07d6140..13b9fbd 100644 --- a/arch/arm/mach-omap2/omap_twl.c +++ b/arch/arm/mach-omap2/omap_twl.c @@ -266,7 +266,7 @@ int __init omap3_twl_init(void) { struct voltagedomain *voltdm; - if (!cpu_is_omap34xx()) + if (!cpu_is_omap34xx() || cpu_is_omap3505() || cpu_is_omap3517() ) return -ENODEV; if (cpu_is_omap3630()) {