From patchwork Wed Jan 8 01:44:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Tobias X-Patchwork-Id: 3451071 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 205069F374 for ; Wed, 8 Jan 2014 01:45:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3580320136 for ; Wed, 8 Jan 2014 01:45:12 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 538F82012F for ; Wed, 8 Jan 2014 01:45:11 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1W0iCg-0005vR-GP; Wed, 08 Jan 2014 01:45:06 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1W0iCe-00015T-0F; Wed, 08 Jan 2014 01:45:04 +0000 Received: from mail-pd0-x234.google.com ([2607:f8b0:400e:c02::234]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1W0iCa-00014Y-Mu for linux-arm-kernel@lists.infradead.org; Wed, 08 Jan 2014 01:45:01 +0000 Received: by mail-pd0-f180.google.com with SMTP id q10so1112874pdj.25 for ; Tue, 07 Jan 2014 17:44:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=jEAD9UfTsNL9+7qpCDT+QwYrE4AVdR1KzBcLt9ssX2A=; b=ifqB9A5lujYmsuubCRH55X+8HZh2gG0/NNmwUh1tTLLvCz7cpSYpQeADVD4IZFUoo8 MiFKM5LtZApjaAeabCVB9oRudAqac79ghduXPut5r5Bu5bXR/UYjiWwwfinMqRvJRbmx h0nKpX2Y69BJjC0PPwo1TBsoUkIR0NiYIqRl2vtGCstPw4HmdPJ2nPSdHdt3V0/Bsxi4 ShJHf1TmpEKiFVzj2WrzKvc+lAozOsuE+DWMmfIPFpmB6Q+/cVA7bc/UeLnafNdobEVl 89Da3/PMoDOZTwXC0lXJwNWRIUzEZAksW39Xzoz9ZBxgvjjNdUa/9uebUtcaawrf+vl4 b21w== X-Received: by 10.68.178.3 with SMTP id cu3mr30253297pbc.93.1389145476885; Tue, 07 Jan 2014 17:44:36 -0800 (PST) Received: from localhost.localdomain (morse-p.static.monkeybrains.net. [208.90.214.40]) by mx.google.com with ESMTPSA id sg1sm139103920pbb.16.2014.01.07.17.44.35 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 07 Jan 2014 17:44:35 -0800 (PST) From: John Tobias To: kernel@pengutronix.de, linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] ARM: imx: select ARCH_HAS_CPUFREQ for iMX6SL Date: Tue, 7 Jan 2014 17:44:04 -0800 Message-Id: <1389145444-61816-1-git-send-email-john.tobias.ph@gmail.com> X-Mailer: git-send-email 1.8.3.2 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140107_204500_835817_2A12D10F X-CRM114-Status: UNSURE ( 8.47 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.0 (--) Cc: John Tobias X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP iMX6SL now supported the cpufreq scaling by re-using the imx6q-cpufreq driver. By adding it, the user has the capability to select the said driver without depending it to SOC_IMX6Q. Signed-off-by: John Tobias --- arch/arm/mach-imx/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index 7a6e6f7..704e5ae 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig @@ -808,6 +808,7 @@ config SOC_IMX6Q config SOC_IMX6SL bool "i.MX6 SoloLite support" + select ARCH_HAS_CPUFREQ select ARM_ERRATA_754322 select ARM_ERRATA_775420 select ARM_GIC