From patchwork Sat Apr 28 09:21:22 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 10370171 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 7C178601BE for ; Sat, 28 Apr 2018 09:22:36 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 79E8328A06 for ; Sat, 28 Apr 2018 09:22:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6DD8829289; Sat, 28 Apr 2018 09:22:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9A59828A06 for ; Sat, 28 Apr 2018 09:22:34 +0000 (UTC) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 1C32A2675E6; Sat, 28 Apr 2018 11:22:31 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 280592675FA; Sat, 28 Apr 2018 11:22:28 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by alsa0.perex.cz (Postfix) with ESMTP id 7DBF82675E6 for ; Sat, 28 Apr 2018 11:22:24 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Apr 2018 02:22:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,338,1520924400"; d="scan'208";a="195094916" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by orsmga004.jf.intel.com with ESMTP; 28 Apr 2018 02:22:20 -0700 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1fCM3f-000TLJ-Jv; Sat, 28 Apr 2018 17:22:19 +0800 Date: Sat, 28 Apr 2018 17:21:22 +0800 From: kbuild test robot To: Jean-Jacques Hiblot Message-ID: <20180428092122.GA115601@ivytown2> References: <1524837349-16350-4-git-send-email-jjhiblot@ti.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1524837349-16350-4-git-send-email-jjhiblot@ti.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Cc: mark.rutland@arm.com, devicetree@vger.kernel.org, alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, tiwai@suse.com, robh+dt@kernel.org, broonie@kernel.org, kbuild-all@01.org, Jean-Jacques Hiblot , afd@ti.com, dannenberg@ti.com Subject: [alsa-devel] [RFC PATCH] ASoC: tas6424: diags_enum can be static X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Fixes: c9f4b53ff449 ("ASoC: tas6424: Allow disabling auto diagnostics for faster power-on") Signed-off-by: Fengguang Wu --- tas6424.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/tas6424.c b/sound/soc/codecs/tas6424.c index 8eb4842..8bca6b2 100644 --- a/sound/soc/codecs/tas6424.c +++ b/sound/soc/codecs/tas6424.c @@ -58,7 +58,7 @@ static DECLARE_TLV_DB_SCALE(dac_tlv, -10350, 50, 0); static const char * const diags_enum_texts[] = {"OFF", "ON"}; static unsigned int diags_enum_values[] = {1, 0}; -SOC_VALUE_ENUM_SINGLE_DECL(diags_enum, TAS6424_DC_DIAG_CTRL1, +static SOC_VALUE_ENUM_SINGLE_DECL(diags_enum, TAS6424_DC_DIAG_CTRL1, TAS6424_LDGBYPASS_SHIFT, TAS6424_LDGBYPASS_MASK, diags_enum_texts, diags_enum_values);