From patchwork Mon Apr 10 13:17:52 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kishon Vijay Abraham I X-Patchwork-Id: 97163 Delivered-To: patch@linaro.org Received: by 10.182.246.10 with SMTP id xs10csp1355370obc; Mon, 10 Apr 2017 06:27:14 -0700 (PDT) X-Received: by 10.98.90.66 with SMTP id o63mr53264569pfb.54.1491830834247; Mon, 10 Apr 2017 06:27:14 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id k87si9779517pfa.113.2017.04.10.06.27.13; Mon, 10 Apr 2017 06:27:14 -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; dkim=pass header.i=@ti.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; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=ti.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753486AbdDJNSa (ORCPT + 24 others); Mon, 10 Apr 2017 09:18:30 -0400 Received: from lelnx194.ext.ti.com ([198.47.27.80]:57530 "EHLO lelnx194.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752750AbdDJNS3 (ORCPT ); Mon, 10 Apr 2017 09:18:29 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by lelnx194.ext.ti.com (8.15.1/8.15.1) with ESMTP id v3ADIRdT000879; Mon, 10 Apr 2017 08:18:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1491830307; bh=RJFWY0AeLiUQNclK8ajRQZ92ohoTztYqZkdDMQZagoA=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=friDddZmMtiY7kRDre8gDVO/wp1Tck74Y2JnRZR062AleSoiUuI75YI/sx1dy+ub1 pRC94EvzvDGZ5Ds/mt/J+/tDztklZfD9Njz2NrTp/IwhhFW2qEYBfkCwETVoKwYVHl kNRh2wVEYX1MiJRRvBMeSTZRZ6KSy04t5JQ1zq1Y= Received: from DFLE72.ent.ti.com (dfle72.ent.ti.com [128.247.5.109]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id v3ADIRAU027123; Mon, 10 Apr 2017 08:18:27 -0500 Received: from dflp33.itg.ti.com (10.64.6.16) by DFLE72.ent.ti.com (128.247.5.109) with Microsoft SMTP Server id 14.3.294.0; Mon, 10 Apr 2017 08:18:27 -0500 Received: from a0393678ub.india.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id v3ADIOLt032573; Mon, 10 Apr 2017 08:18:26 -0500 From: Kishon Vijay Abraham I To: CC: , Subject: [PATCH 01/32] mfd: exynos-lpass: Use common soc/exynos-regs-pmu.h header Date: Mon, 10 Apr 2017 18:47:52 +0530 Message-ID: <20170410131823.26485-2-kishon@ti.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170410131823.26485-1-kishon@ti.com> References: <20170410131823.26485-1-kishon@ti.com> MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Krzysztof Kozlowski The MFD-specific header will go away because it duplicates defines from exynos-regs-pmu.h. Reported-by: kbuild test robot Signed-off-by: Krzysztof Kozlowski Reviewed-by: Bartlomiej Zolnierkiewicz Signed-off-by: Lee Jones Signed-off-by: Kishon Vijay Abraham I --- drivers/mfd/exynos-lpass.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 2.11.0 diff --git a/drivers/mfd/exynos-lpass.c b/drivers/mfd/exynos-lpass.c index 2e064fb8826f..8bebad92a385 100644 --- a/drivers/mfd/exynos-lpass.c +++ b/drivers/mfd/exynos-lpass.c @@ -18,11 +18,11 @@ #include #include #include -#include #include #include #include #include +#include #include /* LPASS Top register definitions */ @@ -83,7 +83,7 @@ static void exynos_lpass_enable(struct exynos_lpass *lpass) /* Activate related PADs from retention state */ regmap_write(lpass->pmu, EXYNOS5433_PAD_RETENTION_AUD_OPTION, - EXYNOS5433_PAD_INITIATE_WAKEUP_FROM_LOWPWR); + EXYNOS_WAKEUP_FROM_LOWPWR); exynos_lpass_core_sw_reset(lpass, LPASS_I2S_SW_RESET); exynos_lpass_core_sw_reset(lpass, LPASS_DMA_SW_RESET);