From patchwork Thu May 19 23:20:17 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 68205 Delivered-To: patch@linaro.org Received: by 10.140.92.199 with SMTP id b65csp3466455qge; Thu, 19 May 2016 16:21:01 -0700 (PDT) X-Received: by 10.98.100.132 with SMTP id y126mr5390152pfb.101.1463700061460; Thu, 19 May 2016 16:21:01 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 143si3449599pfy.175.2016.05.19.16.21.01; Thu, 19 May 2016 16:21:01 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755301AbcESXU7 (ORCPT + 30 others); Thu, 19 May 2016 19:20:59 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:58132 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754458AbcESXU5 (ORCPT ); Thu, 19 May 2016 19:20:57 -0400 Received: from dflxv15.itg.ti.com ([128.247.5.124]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id u4JNKKNx023145; Thu, 19 May 2016 18:20:20 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id u4JNKKrQ029168; Thu, 19 May 2016 18:20:20 -0500 Received: from dlep33.itg.ti.com (157.170.170.75) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.294.0; Thu, 19 May 2016 18:20:19 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep33.itg.ti.com (8.14.3/8.13.8) with ESMTP id u4JNKJ7O006931; Thu, 19 May 2016 18:20:19 -0500 From: Nishanth Menon To: Grygorii Strashko , Tony , Russell King CC: , , , Nishanth Menon Subject: [PATCH] ARM: OMAP2: Enable Errata 430973 for OMAP3 Date: Thu, 19 May 2016 18:20:17 -0500 Message-ID: <1463700017-18527-1-git-send-email-nm@ti.com> X-Mailer: git-send-email 2.8.0 MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Enable Erratum 430973 similar to commit 5c86c5339c56 ("ARM: omap2plus_defconfig: Enable ARM erratum 430973 for omap3") - Since multiple defconfigs can exist from various points of view (multi_v7, omap2plus etc.. it is always better to enable the erratum from the Kconfig selection point of view so that downstream kernels dont have to rediscover this all over again. Reported-by: Grygorii Strashko Signed-off-by: Nishanth Menon --- Note: If this approach is fine, we should probably search and fixup errata enablement we have done directly in omap2plus_defconfig. arch/arm/mach-omap2/Kconfig | 1 + 1 file changed, 1 insertion(+) -- 2.8.0 diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig index 415a0bd0cda6..e0c796060fa2 100644 --- a/arch/arm/mach-omap2/Kconfig +++ b/arch/arm/mach-omap2/Kconfig @@ -17,6 +17,7 @@ config ARCH_OMAP3 select PM_OPP if PM select PM if CPU_IDLE select SOC_HAS_OMAP2_SDRC + select ARM_ERRATA_430973 config ARCH_OMAP4 bool "TI OMAP4"